mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-11 21:56:19 +10:00
16 lines
307 B
Ruby
16 lines
307 B
Ruby
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
|
|
|