-
Notifications
You must be signed in to change notification settings - Fork 230
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixing test infrastructure #142
Comments
I guess part of the problem is, what version of rails should this test against? Should we have a Gemfile present? |
Against 3.2.3, I get:
|
Suggestion: (Sorry for so many posts, I'm rambling as ideas come to me) Use Bundler to specify several different groups, for different versions of rails... |
This make the tests run for me in rails 3.2.3:
I don't know yet what that does to other version of rails. |
See comment on #112 |
For Rails 2.x, testing works quite nicely: either call
or specify the Rails version from gems to test against:
However, with Rails 3, this gets a bit messy. I currently need to set up a dummy project (say, test-app) and execute the tests from inside a bundle exec, thus:
We really need to fix this...
The text was updated successfully, but these errors were encountered: