1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-02-19 23:24:39 +01:00
dotSCAD/test/util/test_split_str.scad
2020-01-26 16:50:52 +08:00

10 lines
222 B
OpenSCAD

use <unittest.scad>;
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();