Skip to content

Commit

Permalink
Fixes #227, closes #224 and fixes #228
Browse files Browse the repository at this point in the history
  • Loading branch information
Tieske committed Apr 7, 2014
1 parent 7730904 commit e3c54c5
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 69 deletions.
41 changes: 0 additions & 41 deletions bin/busted

This file was deleted.

24 changes: 0 additions & 24 deletions bin/busted.bat

This file was deleted.

3 changes: 2 additions & 1 deletion bin/busted.lua
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env lua

-- Busted command-line runner

local cli = require 'cliargs'
Expand All @@ -19,7 +21,6 @@ cli:add_flag("--version", "prints the program's version and exits")
cli:optarg("ROOT", "test script file/folder. Folders will be traversed for any file that matches the --pattern option.", "spec", 1)

cli:add_option("-o, --output=LIBRARY", "output library to load", defaultoutput)
cli:add_option("-l, --lua=luajit", "path to the execution environment (luajit or lua), picks first available", defaultlua)
cli:add_option("-d, --cwd=cwd", "path to current working directory", "./")
cli:add_option("-p, --pattern=pattern", "only run test files matching the Lua pattern", defaultpattern)
cli:add_option("-t, --tags=tags", "only run tests with these #tags")
Expand Down
4 changes: 1 addition & 3 deletions busted-1.10.0-0.rockspec
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,7 @@ build = {
},
install = {
bin = {
["busted"] = "bin/busted",
["busted.bat"] = "bin/busted.bat",
["busted_bootstrap"] = "bin/busted_bootstrap"
["busted"] = "bin/busted.lua"
}
}
}

0 comments on commit e3c54c5

Please sign in to comment.