diff options
author | Pjotr Prins | 2016-10-09 11:24:54 +0000 |
---|---|---|
committer | Pjotr Prins | 2016-10-09 11:24:54 +0000 |
commit | a8e93270ceb193f5184245edac8bf928e7a668c2 (patch) | |
tree | 959413d180bbc67b6dd5f18da3d825113e7608d3 /bin/test-website | |
parent | 5bb243958f1ea5b38a359b327e84cb1ea4f38e05 (diff) | |
download | genenetwork2-a8e93270ceb193f5184245edac8bf928e7a668c2.tar.gz |
Tests: change options
Diffstat (limited to 'bin/test-website')
-rwxr-xr-x | bin/test-website | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/bin/test-website b/bin/test-website index c9a72a5e..be223d94 100755 --- a/bin/test-website +++ b/bin/test-website @@ -52,12 +52,12 @@ opts = OptionParser.new do |o| options[:link_checker] = true end - o.on('--navigation-test', 'Check for navigation') do - options[:navigation_test] = true + o.on('--navigation', 'Check for navigation') do + options[:navigation] = true end - o.on('--mapping-test', 'Check for mapping') do - options[:mapping_test] = true + o.on('--mapping', 'Check for mapping') do + options[:mapping] = true end o.on('--skip-broken', 'Skip tests that are known to be broken') do @@ -98,7 +98,7 @@ $: << File.join(libpath,'test/lib') require 'main_web_functionality' -if options[:all] or options[:mapping_test] +if options[:all] or options[:mapping] require 'mapping' end @@ -106,6 +106,6 @@ if options[:all] or options[:link_checker] require 'link_checker' end -if options[:all] or options[:navigation_test] +if options[:all] or options[:navigation] require 'navigation' end |