mirror of
https://github.com/wahyd4/ocelots.git
synced 2026-08-10 13:36:16 +10:00
10 lines
224 B
Ruby
10 lines
224 B
Ruby
require 'spec_helper'
|
|
|
|
describe Organisation do
|
|
it 'associates with multiple teams' do
|
|
tw = Organisation.create(name: 'ThoughtWorks')
|
|
tw.teams.create(name: 'Suncorp LSP')
|
|
tw.teams.should have(1).team
|
|
end
|
|
end
|