mirror of
https://github.com/internetee/registry.git
synced 2025-05-16 17:37:17 +02:00
11 lines
230 B
Ruby
11 lines
230 B
Ruby
require_relative 'rails_helper'
|
|
|
|
RSpec.describe 'FactoryGirl', db: true do
|
|
before :example do
|
|
allow(Contact).to receive(:address_processing?).and_return(false)
|
|
end
|
|
|
|
it 'lints factories' do
|
|
FactoryGirl.lint
|
|
end
|
|
end
|