Reputation: 917
I've just cloned repo from here: https://github.com/netguru-training/workshops.git
And I tried run the tests.
But when I type rake test
nothing happens. Any warning, error, nothing at all.
I've ran bundle install
and configure database (in database.yml
)
What is the problem? How to run the tests?
Upvotes: 0
Views: 105
Reputation: 1387
Because this repository use RSpec. So to launch your test, you should run rspec
.
Upvotes: 2