1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-09-25 05:51:41 +02:00
Files
dotSCAD/test/test_split_str.scad
2019-06-11 14:32:21 +08:00

11 lines
240 B
OpenSCAD

module test_split_str() {
echo("==== test_split_str ====");
include <unittest.scad>;
include <sub_str.scad>;
include <split_str.scad>;
assert(["hello", "world"] == split_str("hello,world", ","));
}
test_split_str();