8 lines
208 B
Ruby
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
|