mirror of
https://github.com/octoleo/lsyncd.git
synced 2024-11-14 17:14:04 +00:00
12 lines
420 B
Lua
12 lines
420 B
Lua
dofile( 'tests/testlib.lua' )
|
|
|
|
cwriteln( '****************************************************************' )
|
|
cwriteln( ' Testing Utils Functions ' )
|
|
cwriteln( '****************************************************************' )
|
|
|
|
assert(isTableEqual(
|
|
splitQuotedString("-p 22 -i '/home/test/bla blu/id_rsa'"),
|
|
{"-p", "22", "-i", "/home/test/bla blu/id_rsa"}
|
|
))
|
|
|
|
os.exit(0) |