mirror of
https://github.com/octoleo/lsyncd.git
synced 2024-11-11 15:50:56 +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)
|