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