diff options
| author | Hisham Muhammad <hisham@gobolinux.org> | 2012-11-05 00:31:15 -0200 |
|---|---|---|
| committer | Hisham Muhammad <hisham@gobolinux.org> | 2012-11-05 00:31:15 -0200 |
| commit | b11037885b303cc361f32758328ee24bf0d5d765 (patch) | |
| tree | 690600d2535d5ec70eb4488638bd7035607cb563 /test/test_require.lua | |
| parent | 77b725b87d887c61f3475942e81a7d2e14e6ae7f (diff) | |
| download | luarocks-b11037885b303cc361f32758328ee24bf0d5d765.tar.gz luarocks-b11037885b303cc361f32758328ee24bf0d5d765.tar.bz2 luarocks-b11037885b303cc361f32758328ee24bf0d5d765.zip | |
Remove old tests
Diffstat (limited to 'test/test_require.lua')
| -rwxr-xr-x | test/test_require.lua | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/test/test_require.lua b/test/test_require.lua deleted file mode 100755 index 2a652d29..00000000 --- a/test/test_require.lua +++ /dev/null | |||
| @@ -1,25 +0,0 @@ | |||
| 1 | #!/usr/bin/env lua | ||
| 2 | |||
| 3 | local luarocks = require("luarocks.require") | ||
| 4 | |||
| 5 | luarocks.set_context("cgilua", "cvs-2") | ||
| 6 | |||
| 7 | print(package.path) | ||
| 8 | |||
| 9 | print(package.cpath) | ||
| 10 | |||
| 11 | local socket = require("socket") | ||
| 12 | if not socket then os.exit(1) end | ||
| 13 | print(socket, socket._VERSION) | ||
| 14 | |||
| 15 | local socket2 = require("socket") | ||
| 16 | if not socket2 then os.exit(1) end | ||
| 17 | print(socket2, socket2._VERSION) | ||
| 18 | |||
| 19 | local mime = require("mime") | ||
| 20 | if not mime then os.exit(1) end | ||
| 21 | print(mime, mime._VERSION) | ||
| 22 | |||
| 23 | local socket = require("lfs") | ||
| 24 | if not lfs then os.exit(1) end | ||
| 25 | print(lfs, lfs._VERSION) | ||
