2024-03-15 18:27:31 -04:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
|
|
RSpec.describe Import, type: :model do
|
2024-03-15 19:01:00 -04:00
|
|
|
describe 'associations' do
|
|
|
|
|
it { is_expected.to have_many(:points).dependent(:destroy) }
|
|
|
|
|
it { is_expected.to belong_to(:user) }
|
|
|
|
|
end
|
2024-03-15 18:27:31 -04:00
|
|
|
end
|