Skip to content

Commit

Permalink
(#35) add -with-lc test code
Browse files Browse the repository at this point in the history
Signed-off-by: hahwul <[email protected]>
  • Loading branch information
hahwul committed Oct 13, 2021
1 parent 88e9899 commit 3c3a8a7
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions pkg/gee/string_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,18 @@ func TestStringProc(t *testing.T) {
},
want: "-- abcd1234 --",
},
{
name: "test7 (with-lc)",
args: args{
l: "a1234",
stdLine: 0,
options: model.Options{
Format: "",
WithLettersCount: true,
},
},
want: "[5] a1234",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
Expand Down

0 comments on commit 3c3a8a7

Please sign in to comment.