Files
timeoverflow/spec/models/transfer_spec.rb
2020-12-21 21:40:23 +01:00

8 lines
208 B
Ruby

RSpec.describe Transfer do
describe 'Relations' do
it { is_expected.to belong_to(:post).optional }
it { is_expected.to have_many(:movements) }
it { is_expected.to have_many(:events) }
end
end