mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-01 12:24:28 +01:00
15 lines
413 B
Ruby
15 lines
413 B
Ruby
require 'test_helper'
|
|
|
|
class OrganizationTest < ActiveSupport::TestCase
|
|
test 'organization must have a name' do
|
|
a = Address.new({address: '14 avenue du Maréchal Tartanpion, 12345 Saint-Robert-sur-Mer'})
|
|
o = Organization.new({address: a})
|
|
assert o.invalid?
|
|
end
|
|
|
|
test 'organization must have an address' do
|
|
o = Organization.new({name: 'Menuiserie G. Dubois'})
|
|
assert o.invalid?
|
|
end
|
|
end
|