1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-01-17 14:18:13 +01:00
dotSCAD/test/util/test_split_str.scad
2022-06-06 13:11:46 +08:00

9 lines
200 B
OpenSCAD

use <util/split_str.scad>
module test_split_str() {
echo("==== test_split_str ====");
assert(["hello", "world","abc", "xyz"] == split_str("hello,world,abc,xyz", ","));
}
test_split_str();