Running the Test

Learn how to run tests on rails application and workflow of running RSpec example group.

Gatherer app’s first test

Now that we’ve written our first test, we’d probably like to execute it. Although RSpec provides Rake tasks for executing RSpec, use the rspec command directly to avoid the overhead of starting up Rake. If we ...