aboutsummaryrefslogtreecommitdiff
path: root/site/lib
diff options
context:
space:
mode:
authorJoachim Filip Ignacy Bartosik <jbartosik@gmail.com>2011-05-10 10:37:18 +0200
committerJoachim Filip Ignacy Bartosik <jbartosik@gmail.com>2011-05-13 13:23:06 +0200
commit5c2d4c06c186d605e8ae0df958bcf287db77909c (patch)
tree86e46ae04367b64fe37b3c2b3888b332e82c30a9 /site/lib
parentA working rspec test (diff)
downloadcouncil-webapp-5c2d4c06c186d605e8ae0df958bcf287db77909c.tar.gz
council-webapp-5c2d4c06c186d605e8ae0df958bcf287db77909c.tar.bz2
council-webapp-5c2d4c06c186d605e8ae0df958bcf287db77909c.zip
Cucumber with a login feature demonstrating cookies work
Diffstat (limited to 'site/lib')
-rw-r--r--site/lib/tasks/cucumber.rake50
1 files changed, 50 insertions, 0 deletions
diff --git a/site/lib/tasks/cucumber.rake b/site/lib/tasks/cucumber.rake
new file mode 100644
index 0000000..ce49e1c
--- /dev/null
+++ b/site/lib/tasks/cucumber.rake
@@ -0,0 +1,50 @@
+unless ARGV.any? {|a| a =~ /^gems/} # Don't load anything when running the gems:* tasks
+
+vendored_cucumber_bin = Dir["#{Rails.root}/vendor/{gems,plugins}/cucumber*/bin/cucumber"].first
+$LOAD_PATH.unshift(File.dirname(vendored_cucumber_bin) + '/../lib') unless vendored_cucumber_bin.nil?
+
+begin
+ require 'cucumber/rake/task'
+
+ namespace :cucumber do
+ Cucumber::Rake::Task.new({:ok => 'db:test:prepare'}, 'Run features that should pass') do |t|
+ t.binary = vendored_cucumber_bin # If nil, the gem's binary is used.
+ t.fork = true # You may get faster startup if you set this to false
+ t.profile = 'default'
+ end
+
+ Cucumber::Rake::Task.new({:wip => 'db:test:prepare'}, 'Run features that are being worked on') do |t|
+ t.binary = vendored_cucumber_bin
+ t.fork = true # You may get faster startup if you set this to false
+ t.profile = 'wip'
+ end
+
+ Cucumber::Rake::Task.new({:rerun => 'db:test:prepare'}, 'Record failing features and run only them if any exist') do |t|
+ t.binary = vendored_cucumber_bin
+ t.fork = true # You may get faster startup if you set this to false
+ t.profile = 'rerun'
+ end
+
+ desc 'Run all features'
+ task :all => [:ok, :wip]
+ end
+ desc 'Alias for cucumber:ok'
+ task :cucumber => 'cucumber:ok'
+
+ task :default => :cucumber
+
+ task :features => :cucumber do
+ STDERR.puts "*** The 'features' task is deprecated. See rake -T cucumber ***"
+ end
+
+ # In case we don't have ActiveRecord, append a no-op task that we can depend upon.
+ task 'db:test:prepare' do
+ end
+rescue LoadError
+ desc 'cucumber rake task not available (cucumber not installed)'
+ task :cucumber do
+ abort 'Cucumber rake task is not available. Be sure to install cucumber as a gem or plugin'
+ end
+end
+
+end