Configure shoulda matchers to integrate with rspec

This commit is contained in:
Matt Jankowski 2024-03-20 11:29:15 -04:00
parent 979c763ff8
commit 07a5d58551
1 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
# frozen_string_literal: true
Shoulda::Matchers.configure do |config|
config.integrate do |with|
with.test_framework :rspec
with.library :rails
end
end