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