dawarich/spec/models/user_spec.rb

8 lines
232 B
Ruby
Raw Normal View History

require 'rails_helper'
RSpec.describe User, type: :model do
2024-03-23 15:29:55 -04:00
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