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?