project_team_spec.rb
307 Bytes
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) }
end
end