2013-01-04 16:35:31 -05:00
|
|
|
require "spec_helper"
|
|
|
|
|
2013-01-20 16:07:17 -05:00
|
|
|
describe ProjectTeam do
|
2013-01-04 16:35:31 -05:00
|
|
|
let(:team) { create(:project).team }
|
|
|
|
|
2013-01-04 01:43:25 -05:00
|
|
|
describe "Respond to" do
|
2013-01-04 16:35:31 -05:00
|
|
|
subject { team }
|
|
|
|
|
2013-01-04 01:43:25 -05:00
|
|
|
it { should respond_to(:developers) }
|
|
|
|
it { should respond_to(:masters) }
|
|
|
|
it { should respond_to(:reporters) }
|
|
|
|
it { should respond_to(:guests) }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|