mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-08 16:54:31 +00:00
22 lines
583 B
Ruby
22 lines
583 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
RSpec.describe Import do
|
|
let(:account) { Fabricate(:account) }
|
|
let(:type) { 'following' }
|
|
let(:data) { attachment_fixture('imports.txt') }
|
|
|
|
describe 'validations' do
|
|
it 'is invalid without an type' do
|
|
import = described_class.create(account: account, data: data)
|
|
expect(import).to model_have_error_on_field(:type)
|
|
end
|
|
|
|
it 'is invalid without a data' do
|
|
import = described_class.create(account: account, type: type)
|
|
expect(import).to model_have_error_on_field(:data)
|
|
end
|
|
end
|
|
end
|