jorgemanrubia / mailgun_rails

Rails Action Mailer adapter for Mailgun
MIT License
210 stars 70 forks source link

Made the default rake task run rspec #36

Closed iainbeeston closed 9 years ago

iainbeeston commented 9 years ago

Right now travis isn't running any tests. At all. .travis.yml doesn't specify any command to run, and so travis is doing the default action (for a ruby project) and running ~bundle exec rake~. In the case of this project, that runs test unit. Unfortunately, there aren't any test unit tests, so nothing happens.

I've swapped out the test unit rake task for the default rspec one. This should make tests run successfully on travis, but it's also good practice for the default rake task to run tests.

jorgemanrubia commented 9 years ago

:+1: thank you