Class: QUnited::Application
- Inherits:
-
Object
- Object
- QUnited::Application
- Defined in:
- lib/qunited/application.rb
Instance Method Summary collapse
-
#handle_options ⇒ Object
Parse and handle command line options.
-
#options ⇒ Object
Client options generally parsed from the command line.
- #run ⇒ Object
- #run_tests ⇒ Object
Instance Method Details
#handle_options ⇒ Object
Parse and handle command line options
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 |
# File 'lib/qunited/application.rb', line 24 def drivers = ::QUnited::Driver.constants.reject { |d| d == :Base } valid_drivers_string = "Valid drivers include: #{drivers.map { |d| d.to_s }.join(', ')}" args_empty = ARGV.empty? # This is a bit of a hack, but OptionParser removes the -- that separates the source # and test files and we need to put it back in the right place. Save the distance from # the end to do this later. double_dash_neg_index = ARGV.find_index('--') && (ARGV.find_index('--') - ARGV.size) optparse = OptionParser.new do |opts| opts. = <<-HELP_TEXT Usage: qunited [OPTIONS] [JS_SOURCE_FILES...] -- [JS_TEST_FILES..] Runs JavaScript unit tests with QUnit. JS_SOURCE_FILES are the JavaScript files that you want to test. They will all be loaded for running each test. JS_TEST_FILES are files that contain the QUnit tests to run. Options: HELP_TEXT opts.on('-d', '--driver [NAME]', 'Specify the driver to use in running the tests', valid_drivers_string) do |name| raise UsageError, 'Must specify a driver name with -d or --driver option' unless name names_and_drivers = Hash[drivers.map { |d| d.to_s.downcase }.zip(drivers)] driver = names_and_drivers[name.downcase] raise UsageError, "Invalid driver specified: #{name}\n#{valid_drivers_string}" unless driver [:driver] = driver end opts.on('--fixtures [FILES]', 'Specify some files to include as html before running the tests') do |files| [:fixture_files] = files.split(',') end opts.on_tail('-h', '--help', 'Show this message') do puts opts exit end opts.on_tail('--version', 'Print the QUnited version') do puts ::QUnited::VERSION exit end if args_empty puts opts exit 1 end end.parse! # Put the -- back in if we had one initially and it was removed if double_dash_neg_index && !ARGV.include?('--') ARGV.insert(double_dash_neg_index, '--') end end |
#options ⇒ Object
Client options generally parsed from the command line
19 20 21 |
# File 'lib/qunited/application.rb', line 19 def @options ||= {} end |
#run ⇒ Object
5 6 7 8 9 10 |
# File 'lib/qunited/application.rb', line 5 def run handle_exceptions do run_tests end end |