1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-09-23 21:11:34 +02:00
Files
dotSCAD/test/test_split_str.scad
2017-06-22 18:17:02 +08:00

11 lines
243 B
OpenSCAD

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