11 lines
250 B
Ruby
11 lines
250 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
require 'spec_helper'
|
||
|
|
||
|
RSpec.describe Issues::CsvImport, type: :model do
|
||
|
describe 'associations' do
|
||
|
it { is_expected.to belong_to(:project).required }
|
||
|
it { is_expected.to belong_to(:user).required }
|
||
|
end
|
||
|
end
|