Simplifying your tests with Shoulda Matchers

Created by Ana Schwendler, @anaschwendler

This guide assumes that you have already built a Rails Girls app by following the app development guide the RSpec tutorial by this guide and the Commenting tutorial by this guide

Shoulda Matchers is a Ruby testing gem, that provides RSpec- and Minitest-compatible one-liners that test common Rails functionality. These tests would otherwise be much longer, more complex, and error-prone.

Help from the coach

Talk about testing and Behavior-Driven Development.

1. Add Shoulda Matchers gem

Open up your Gemfile and add this line to the :test group, above the end tag:

group :test do
  ...
  gem 'shoulda-matchers'
end

and run

bundle install

to install the gem.

Help from the coach

Talk about googling terminal output.

2. Adjust your rails_helper.rb

In our case, we will be using RSpec to test our project, so we need to say to our rails_helper.rb that we are using Shoulda Matchers:

Place above the last end tag (check the indentation):

  Shoulda::Matchers.configure do |config|
    config.integrate do |with|
      # Choose a test framework:
      with.test_framework :rspec
      with.library :rails
    end
  end
Help from the coach

Talk about why we are adjusting the gem inside rails_helper.rb.

In your terminal run

rspec spec/models/idea_spec.rb

It should show that our test is running ok.

3. Testing!

It is pretty simple to test using Shoulda Matchers. For our first test we already stated that an Idea has many comments, in the Comments for Rails Girls App tutorial

To test if that is working properly, we can add the lines below to our spec/lib/idea_spec.rb, above the first test that we’ve created:

  describe "associations" do
    it{ is_expected.to have_many(:comments) }
  end

This is an association test.

Help from the coach

Talk about association tests.

4. Test-Driven Development

Help from the coach

Talk about TDD, and how we start adding features to our app by testing it first.

Another feature we can add to our app is to make ideas always named. How could we do that? Let’s get started saying ideas should always have a name.

Let’s begin by creating a test for it. We can do that by adding the following lines to our spec/lib/idea_spec.rb:

  describe "validations" do
    it{ is_expected.to validate_presence_of :name }
  end

add it below our association test.

After that, in your terminal run

rspec spec/models/idea_spec.rb

It should gives us that we are not properly validating it (and we really are not). So to validate that, we need to add the following lines to our model, so we can validate the presence of name in our Idea.

  validates :name, presence: true

add it below our has_many statement.

now, back in your terminal run

rspec spec/models/idea_spec.rb

It should give the positive result.

5. Do it by yourself!

Can you continue this tutorial by doing a test to validate the presence of a description?

Can you imagine another tests to make?

Happy testing!


Want to learn more? View more guides!