repair rspec (remove and rename files)
This commit is contained in:
parent
13fb3fdcf2
commit
b8dadd6427
5 changed files with 1 additions and 61 deletions
18
spec/models/project_team_spec.rb
Normal file
18
spec/models/project_team_spec.rb
Normal file
|
@ -0,0 +1,18 @@
|
|||
require "spec_helper"
|
||||
|
||||
describe ProjectTeam do
|
||||
let(:team) { create(:project).team }
|
||||
|
||||
describe "Respond to" do
|
||||
subject { team }
|
||||
|
||||
it { should respond_to(:developers) }
|
||||
it { should respond_to(:masters) }
|
||||
it { should respond_to(:reporters) }
|
||||
it { should respond_to(:guests) }
|
||||
it { should respond_to(:repository_writers) }
|
||||
it { should respond_to(:repository_masters) }
|
||||
it { should respond_to(:repository_readers) }
|
||||
end
|
||||
end
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue