Jensky
Jensky

Reputation: 917

After 'rake test' nothing happens in Rails app

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

Answers (1)

Florent Ferry
Florent Ferry

Reputation: 1387

Because this repository use RSpec. So to launch your test, you should run rspec.

Upvotes: 2

Related Questions