dawarich/spec/models/user_spec.rb
2024-03-23 20:29:55 +01:00

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