-
Notifications
You must be signed in to change notification settings - Fork 24
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
Tests are needed. Any volunteers? #4
Comments
I'd love to run some tests but I'm getting this issue when running
It looks like we need to declare active_record as a dependency for development to get testing to work. Should we be requiring the entire Rails frame work to run a complete test suite, or individual gems as needed (such as active_record)? |
Including
It looks like the line declaring an initializer for the gem is calling an instance of |
Adding |
I wonder if: if Rails.env == 'test' would be sufficient?? |
Ok I've got tests working by requiring 'rails/all' in |
AHHH - awesome! Great work - |
Added some preliminary tests that just make sure the gem loads properly with config settings. More tests still needed.. |
Our tests are now being run after every push on travis. You can quickly see the state of the last build at the top of our README.rdoc file (aka - the wepay-rails github page). I'll be adding tests soon too. Thanks, am |
Yes it looks like there's an error with Ruby 1.8 support; I used the new hash syntax instead of the old rocket style |
Tests are indeed needed. I will create some - OR - if someone out there would like to create some tests, please do so and send me a pull request. Thanks for helping.
The text was updated successfully, but these errors were encountered: