Skip to content

Instantly share code, notes, and snippets.

@josephwilk
Created February 20, 2009 14:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save josephwilk/67493 to your computer and use it in GitHub Desktop.
Save josephwilk/67493 to your computer and use it in GitHub Desktop.
desc "Run cucumber features with real browser"
task :browser => ['features:start', 'cuke_browser']
Cucumber::Rake::Task.new(:cuke_browser) do |t|
t.cucumber_opts = "--profile browser"
t.feature_list = []
t.step_list = []
end
namespace :features do
desc "Start selenium and thin used for testing features"
task :start => ['env:test', 'ferret:clobber', 'thin:restart', 'selenium:start_servant', 'ferret:start']
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment