summaryrefslogtreecommitdiff
path: root/spec/models/project_team_spec.rb
blob: 3e3543e85e1866033d2a885d8ca826683462a1e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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