summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--spec/models/project_team_spec.rb16
1 files changed, 8 insertions, 8 deletions
diff --git a/spec/models/project_team_spec.rb b/spec/models/project_team_spec.rb
index 1a7e3cd94b4..1cc37719e7a 100644
--- a/spec/models/project_team_spec.rb
+++ b/spec/models/project_team_spec.rb
@@ -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