mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-10 17:21:38 -05:00
7 lines
232 B
Ruby
7 lines
232 B
Ruby
require 'rails_helper'
|
|
|
|
RSpec.describe User, type: :model do
|
|
it { is_expected.to have_many(:imports).dependent(:destroy) }
|
|
it { is_expected.to have_many(:points).through(:imports) }
|
|
it { is_expected.to have_many(:stats) }
|
|
end
|