/ test / util / test_split_str.scad
test_split_str.scad
1  use <util/split_str.scad>
2  
3  module test_split_str() {
4      echo("==== test_split_str ====");
5  
6      assert(["hello", "world","abc", "xyz"] == split_str("hello,world,abc,xyz", ","));  
7  }
8  
9  test_split_str();