2021-02-03 13:54:51 +00:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe DataImport, type: :model do
|
|
|
|
describe 'associations' do
|
|
|
|
it { is_expected.to belong_to(:account) }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'validations' do
|
|
|
|
it 'returns false for invalid data type' do
|
2022-07-15 02:51:59 +00:00
|
|
|
expect(build(:data_import, data_type: 'Xyc').valid?).to be false
|
2021-02-03 13:54:51 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|