mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-15 20:54:03 +00:00
15 lines
267 B
Ruby
15 lines
267 B
Ruby
|
|
require 'spec_helper'
|
||
|
|
|
||
|
|
describe PhysicalTicket do
|
||
|
|
|
||
|
|
describe 'association' do
|
||
|
|
it { is_expected.to belong_to :ticket_purchase }
|
||
|
|
end
|
||
|
|
|
||
|
|
describe 'validations' do
|
||
|
|
it 'has a valid factory' do
|
||
|
|
expect(build(:physical_ticket)).to be_valid
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|