aboutsummaryrefslogtreecommitdiff
path: root/assets/blender/ks/signal_ks_exportd.blend1
diff options
context:
space:
mode:
authorEmojigit <yiufamily.hh@gmail.com>2021-11-26 19:05:27 +0800
committerGabriel PĂ©rez-Cerezo <gabriel@gpcf.eu>2021-11-26 12:33:28 +0100
commit0b9441c28908f2d878d59cd0c363656115b27837 (patch)
treeb9e73e9d00966e496ee96b98b2f31a599bc8bab1 /assets/blender/ks/signal_ks_exportd.blend1
parentf27640ee272432e181b003b22ba1a3d5bc18817d (diff)
downloadadvtrains-0b9441c28908f2d878d59cd0c363656115b27837.tar.gz
advtrains-0b9441c28908f2d878d59cd0c363656115b27837.tar.bz2
advtrains-0b9441c28908f2d878d59cd0c363656115b27837.zip
Add C&C Servers into the testing server list, since we are using the latest commit
Diffstat (limited to 'assets/blender/ks/signal_ks_exportd.blend1')
0 files changed, 0 insertions, 0 deletions
class="hl opt">.split("hello")) assert.same({ "hello", "world" }, string.split("hello,world")) assert.same({ "hello", "world" }, string.split("hello,world,,,")) assert.same({ "hello", "world" }, string.split(",,,hello,world")) assert.same({ "hello", "world", "2" }, string.split("hello,,,world,2")) assert.same({ "hello ", " world" }, string.split("hello :| world", ":|")) end) it("keeps empty", function() assert.same({ "hello" }, string.split("hello", ",", true)) assert.same({ "hello", "world" }, string.split("hello,world", ",", true)) assert.same({ "hello", "world", "" }, string.split("hello,world,", ",", true)) assert.same({ "hello", "", "", "world", "2" }, string.split("hello,,,world,2", ",", true)) assert.same({ "", "", "hello", "world", "2" }, string.split(",,hello,world,2", ",", true)) assert.same({ "hello ", " world | :" }, string.split("hello :| world | :", ":|")) end) it("max_splits", function()