0
0
Fork 0

Remove duplicate fabricator validity checks (#29667)

This commit is contained in:
Matt Jankowski 2024-06-11 03:48:42 -04:00 committed by GitHub
parent 88cfc4056d
commit 1622f7aeb9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 0 additions and 13 deletions

View file

@ -8,11 +8,6 @@ RSpec.describe Import do
let(:data) { attachment_fixture('imports.txt') }
describe 'validations' do
it 'has a valid parameters' do
import = described_class.create(account: account, type: type, data: data)
expect(import).to be_valid
end
it 'is invalid without an type' do
import = described_class.create(account: account, data: data)
expect(import).to model_have_error_on_field(:type)