2020-10-20 11:08:57 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-10-27 08:08:33 -04:00
|
|
|
RSpec.describe Issues::CsvImport, type: :model do
|
2020-10-20 11:08:57 -04:00
|
|
|
describe 'associations' do
|
|
|
|
it { is_expected.to belong_to(:project).required }
|
|
|
|
it { is_expected.to belong_to(:user).required }
|
|
|
|
end
|
|
|
|
end
|