repair rspec (remove and rename files)

This commit is contained in:
Andrey Kumanyaev 2013-01-21 01:07:17 +04:00 committed by Dmitriy Zaporozhets
parent 13fb3fdcf2
commit b8dadd6427
5 changed files with 1 additions and 61 deletions

View 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