mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-11 17:51:39 -05:00
8 lines
210 B
Ruby
8 lines
210 B
Ruby
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
|
|
end
|