Skip to content

Instantly share code, notes, and snippets.

@chrisgaunt
Created August 3, 2011 03:57
Show Gist options
  • Star 11 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save chrisgaunt/1121879 to your computer and use it in GitHub Desktop.
Save chrisgaunt/1121879 to your computer and use it in GitHub Desktop.
Rails 3.1: Test engine with Cucumber & test/dummy app

Run from the root of the engine project:

rails generate cucumber:install --capybara

Edit features/support/env.rb and add to the top:

ENV["RAILS_ENV"] ||= "test"
require File.expand_path("../../../test/dummy/config/environment.rb",  __FILE__)
ENV["RAILS_ROOT"] ||= File.dirname(__FILE__) + "../../../test/dummy"

Now from the root of the engine project:

cucumber features
@visoft
Copy link

visoft commented Aug 9, 2011

Thanks for this!

@coryschires
Copy link

+1 Worked for me too!

@amazing-jay
Copy link

+1 for me too

@xavierdutreilh
Copy link

Woohoo, nice gist. Worked for me too. :-)

@StephD
Copy link

StephD commented Apr 10, 2012

+1 Thanks

@harmdewit
Copy link

+1 Woah this worked, thanks!

@segantii-alex-falkowski
Copy link

I keep getting

Migrations are pending. To resolve this issue, run:

    bin/rake db:migrate RAILS_ENV=test

Even though I run it. I keep getting this message. Any idea?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment