Adds the features/uri-features test directory, testing sub-uri deployment. These tests uses script/server since much of this code is about configuring the server. They are not run by "rake cucumber", to run them use "bundle exec rake cucumber features/uri-test". Tests requires a working app_config.yml setup with pod_url = "http://localhost:3000/diaspora" Patches cucumber.yml to always load step definitions from features/**, see http://thoughtsincomputation.com/posts/cucumber-step-definitions-and-autorequire-hell
8 lines
470 B
YAML
8 lines
470 B
YAML
<%
|
|
rerun = File.file?('rerun.txt') ? IO.read('rerun.txt') : ""
|
|
rerun_opts = rerun.to_s.strip.empty? ? "--format #{ENV['CUCUMBER_FORMAT'] || 'progress'} features" : "--format #{ENV['CUCUMBER_FORMAT'] || 'pretty'} #{rerun}"
|
|
std_opts = "--format #{ENV['CUCUMBER_FORMAT'] || 'progress'} --strict --tags ~@wip"
|
|
%>
|
|
default: <%= std_opts %> -r features
|
|
wip: -r features --tags @wip:3 --wip features
|
|
rerun: <%= rerun_opts %> --format rerun --out rerun.txt --strict --tags ~@wip
|