Commit a705d194 authored by Jeroen van Baarsen's avatar Jeroen van Baarsen

Fixed the project team specs

Signed-off-by: default avatarJeroen van Baarsen <jeroenvanbaarsen@gmail.com>
parent 7a89cef6
......@@ -20,17 +20,17 @@ describe ProjectTeam do
end
describe 'members collection' do
it { team.masters.should include(master) }
it { team.masters.should include(guest) }
it { team.masters.should_not include(reporter) }
it { team.masters.should_not include(nonmember) }
it { project.team.masters.should include(master) }
it { project.team.masters.should include(guest) }
it { project.team.masters.should_not include(reporter) }
it { project.team.masters.should_not include(nonmember) }
end
describe 'access methods' do
it { team.master?(master).should be_true }
it { team.master?(guest).should be_true }
it { team.master?(reporter).should be_false }
it { team.master?(nonmember).should be_false }
it { project.team.master?(master).should be_true }
it { project.team.master?(guest).should be_true }
it { project.team.master?(reporter).should be_false }
it { project.team.master?(nonmember).should be_false }
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment