aboutsummaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorJamie Winsor <jamie@enmasse.com>2011-08-04 15:39:04 -0700
committerJamie Winsor <jamie@enmasse.com>2011-08-04 15:39:04 -0700
commitee215655cba5820c3ffe0c665ea71c11f15f3bf9 (patch)
treeaa1da7816aecf14c2033dff124cf867f30b7581b /config
parent8bd056e3e8baa108b2e10e460ceeeed3ec7c4c86 (diff)
downloadrefinerycms-blog-ee215655cba5820c3ffe0c665ea71c11f15f3bf9.tar.gz
refinerycms-blog-ee215655cba5820c3ffe0c665ea71c11f15f3bf9.tar.bz2
refinerycms-blog-ee215655cba5820c3ffe0c665ea71c11f15f3bf9.zip
Replace cucumber tag features with rspec request tests
Remove cucumber support from project
Diffstat (limited to 'config')
-rw-r--r--config/cucumber.yml10
-rw-r--r--config/environment.rb3
2 files changed, 0 insertions, 13 deletions
diff --git a/config/cucumber.yml b/config/cucumber.yml
deleted file mode 100644
index 368422a..0000000
--- a/config/cucumber.yml
+++ /dev/null
@@ -1,10 +0,0 @@
-<%
-ENV["RAILS_ENV"] ||= "test"
-require ::File.expand_path('../spec/dummy/config/environment', __FILE__)
-rerun = IO.read('rerun.txt') if File.file?('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 -r features"
-%>
-default: <%= std_opts %>
-wip: --tags @wip:3 --wip features
-rerun: <%= rerun_opts %> --format rerun --out rerun.txt --strict --tags ~@wip \ No newline at end of file
diff --git a/config/environment.rb b/config/environment.rb
deleted file mode 100644
index 5cdbfa5..0000000
--- a/config/environment.rb
+++ /dev/null
@@ -1,3 +0,0 @@
-# TODO: Remove this when you figure out how to get Cucumber to look for the
-# environment file in the dummy app instead of within the project root
-require File.expand_path('../../spec/dummy/config/environment', __FILE__)