internetee-registry/spec/factory_lint_spec.rb
2017-01-05 19:18:32 +02:00

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