Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

NameError: uninitialized constant Shoulda

I do this tutorial https://www.digitalocean.com/community/tutorials/build-a-restful-json-api-with-rails-5-part-one

But when running the RSpec test at the chapter Models, I get the following error.

C:\Users\NCH-Lap10\Desktop\rubyprojects\todos-api>bundle exec rspec

An error occurred while loading ./spec/controllers/items_controller_spec.rb.
Failure/Error:
  Shoulda::Matchers.configure do |config|
    config.integrate do |with|
      with.test_framework :rspec
      with.library :rails
    end
  end

NameError:
  uninitialized constant Shoulda
# ./spec/rails_helper.rb:6:in `<top (required)>'
# ./spec/controllers/items_controller_spec.rb:1:in `require'
# ./spec/controllers/items_controller_spec.rb:1:in `<top (required)>'

An error occurred while loading ./spec/controllers/todos_controller_spec.rb.
Failure/Error:
  Shoulda::Matchers.configure do |config|
    config.integrate do |with|
      with.test_framework :rspec
      with.library :rails
    end
  end

NameError:
  uninitialized constant Shoulda
# ./spec/rails_helper.rb:6:in `<top (required)>'
# ./spec/controllers/todos_controller_spec.rb:1:in `require'
# ./spec/controllers/todos_controller_spec.rb:1:in `<top (required)>'

An error occurred while loading ./spec/models/item_spec.rb.

So he does not find my tests. (I copied them from the tutorial)

My test lay in spec/models and look like:

require 'rails_helper'

# Test suite for the Item model
RSpec.describe Item, type: :model do
  # Association test
  # ensure an item record belongs to a single todo record
  it { should belong_to(:todo) }
  # Validation test
  # ensure column name is present before saving
  it { should validate_presence_of(:name) }
end

Parts of my Gemfile:

group :test do
  gem 'factory_bot_rails', '~> 4.0'
  gem 'shoulda-matchers', '~> 3.1'
  gem 'faker'
  gem 'database_cleaner'
end

Should I provide more code?

like image 288
kame Avatar asked Aug 30 '26 18:08

kame


1 Answers

According to this issue on github,

You might want to add this to your spec_helper.rb:

require "shoulda/matchers"
require "shoulda/matchers/integrations/rspec"

Also, be sure that spec_helper is required in rails_helper (and rails_helper required in your test file).

Edit for future readers: Second line might be deprecated in recent Rails versions (see comments) so just don't add it

like image 179
Samuel Faure Avatar answered Sep 01 '26 14:09

Samuel Faure



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!