dawarich/spec/models/import_spec.rb

9 lines
210 B
Ruby
Raw Normal View History

2024-03-15 18:27:31 -04:00
require 'rails_helper'
RSpec.describe Import, type: :model do
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