1
0
Fork 0
mirror of https://github.com/mastodon/mastodon.git synced 2024-08-20 21:08:15 -07:00

Configure shoulda matchers to integrate with rspec

This commit is contained in:
Matt Jankowski 2024-03-20 11:29:15 -04:00
parent 0f8ab46b62
commit 9f758fe4b0

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