Skip to content
This repository was archived by the owner on Jan 4, 2025. It is now read-only.

Commit 5702ae3

Browse files
Merge pull request #13 from dorayakikun/refactor-concat
refactor: Refactor `concat` implementation
2 parents 4009499 + a263864 commit 5702ae3

File tree

2 files changed

+42
-5
lines changed

2 files changed

+42
-5
lines changed

command.go

+1-5
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,7 @@ import (
1717
const gowlSite = "gowl.site"
1818

1919
func concat(elm string, elms []string) []string {
20-
rets := []string{elm}
21-
for _, x := range elms {
22-
rets = append(rets, x)
23-
}
24-
return rets
20+
return append(append([]string(nil), elm), elms...)
2521
}
2622

2723
func toSelection(r Repository) string {

command_test.go

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
package main
2+
3+
import "testing"
4+
5+
func TestConcat(t *testing.T) {
6+
cases := []struct{
7+
elm string
8+
elms []string
9+
want []string
10+
} {
11+
{
12+
elm: "",
13+
elms: []string(nil),
14+
want: []string{""},
15+
},
16+
{
17+
elm: "owl",
18+
elms: []string{"fox"},
19+
want: []string{"owl", "fox"},
20+
},
21+
{
22+
elm: "owl",
23+
elms: []string{"fox", "raccoon"},
24+
want: []string{"owl", "fox", "raccoon"},
25+
},
26+
}
27+
28+
for _, c := range cases {
29+
ret := concat(c.elm, c.elms)
30+
31+
if len(ret) != len(c.want) {
32+
t.Fatalf("size unmatch r: %q want: %q\n", ret, c.want)
33+
}
34+
35+
for i, r := range ret {
36+
if r != c.want[i] {
37+
t.Fatalf("ret: %q want %q\n", ret, c.want)
38+
}
39+
}
40+
}
41+
}

0 commit comments

Comments
 (0)