mirror of
https://github.com/vlang/v.git
synced 2025-09-14 06:52:36 +03:00
repl: execute REPL tests ~1.5x to 2x faster
This commit is contained in:
parent
64a9f43405
commit
d92291dd76
30 changed files with 183 additions and 198 deletions
5
vlib/compiler/tests/array_to_string_test.v
Normal file
5
vlib/compiler/tests/array_to_string_test.v
Normal file
|
@ -0,0 +1,5 @@
|
|||
fn test_array_to_string_conversion() {
|
||||
expected := '["1", "2", "3", "4"] '
|
||||
arr := ['1', '2', '3', '4']
|
||||
assert '$arr' == expected
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue