2023-02-21 16:55:31 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-03-30 10:42:33 -07:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2023-05-03 20:49:53 -07:00
|
|
|
RSpec.describe Import do
|
2023-02-17 19:00:05 -08:00
|
|
|
let(:account) { Fabricate(:account) }
|
|
|
|
let(:type) { 'following' }
|
|
|
|
let(:data) { attachment_fixture('imports.txt') }
|
2017-03-30 10:42:33 -07:00
|
|
|
|
2017-09-02 11:45:42 -07:00
|
|
|
describe 'validations' do
|
|
|
|
it 'has a valid parameters' do
|
2023-06-06 04:58:33 -07:00
|
|
|
import = described_class.create(account: account, type: type, data: data)
|
2017-09-02 11:45:42 -07:00
|
|
|
expect(import).to be_valid
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'is invalid without an type' do
|
2023-06-06 04:58:33 -07:00
|
|
|
import = described_class.create(account: account, data: data)
|
2017-09-02 11:45:42 -07:00
|
|
|
expect(import).to model_have_error_on_field(:type)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'is invalid without a data' do
|
2023-06-06 04:58:33 -07:00
|
|
|
import = described_class.create(account: account, type: type)
|
2017-09-02 11:45:42 -07:00
|
|
|
expect(import).to model_have_error_on_field(:data)
|
|
|
|
end
|
|
|
|
end
|
2017-03-30 10:42:33 -07:00
|
|
|
end
|