summaryrefslogtreecommitdiff
path: root/spec/models/issues/csv_import_spec.rb
blob: 2911a79e505e559a2b79b782cac404969be4a081 (plain)
1
2
3
4
5
6
7
8
9
10
# 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