aboutsummaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorHisham <hisham@gobolinux.org>2016-10-28 12:10:46 -0200
committerHisham <hisham@gobolinux.org>2016-10-28 12:10:46 -0200
commit825e722029fbc93976c2d882dd21f444f9bffda0 (patch)
treee406e578987989d547db1710215af701bf644546 /spec
parent17f71ed0e37122d24d8df53e276bbb190c12fb69 (diff)
parent825f903a29df24b912e77e48d8b59e43e3a72029 (diff)
downloadluarocks-825e722029fbc93976c2d882dd21f444f9bffda0.tar.gz
luarocks-825e722029fbc93976c2d882dd21f444f9bffda0.tar.bz2
luarocks-825e722029fbc93976c2d882dd21f444f9bffda0.zip
Merge branch 'master' into luarocks-3
Diffstat (limited to 'spec')
-rw-r--r--spec/fs_spec.lua21
1 files changed, 21 insertions, 0 deletions
diff --git a/spec/fs_spec.lua b/spec/fs_spec.lua
new file mode 100644
index 00000000..c76f47a4
--- /dev/null
+++ b/spec/fs_spec.lua
@@ -0,0 +1,21 @@
1local test_env = require("test/test_environment")
2
3test_env.unload_luarocks()
4local fs = require("luarocks.fs")
5local is_win = test_env.TEST_TARGET_OS == "windows"
6
7describe("Luarocks fs test #whitebox #w_fs", function()
8 describe("fs.Q", function()
9 it("simple argument", function()
10 assert.are.same(is_win and '"foo"' or "'foo'", fs.Q("foo"))
11 end)
12
13 it("argument with quotes", function()
14 assert.are.same(is_win and [["it's \"quoting\""]] or [['it'\''s "quoting"']], fs.Q([[it's "quoting"]]))
15 end)
16
17 it("argument with special characters", function()
18 assert.are.same(is_win and [["\\"%" \\\\" \\\\\\"]] or [['\% \\" \\\']], fs.Q([[\% \\" \\\]]))
19 end)
20 end)
21end)