回答編集履歴
1
lkhlj;ljl
test
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
```bash
|
2
2
|
@test '-l' {
|
3
|
-
actual=
|
3
|
+
actual=`echo -e '111\n222\n333\n444\n555\n666' | deno run -q --allow-run main.ts -l 2,4-5 -- sed 's/./@/'`
|
4
|
-
expected=
|
4
|
+
expected=`echo -e '111\n@22\n333\n@44\n@55\n666\n'`
|
5
5
|
assert_equal "$actual" "$expected"
|
6
6
|
}
|
7
7
|
```
|