require 'helper' describe Bearcat::Client::Groups do before do @client = Bearcat::Client.new(prefix: "http://canvas.instructure.com", token: "test_token") end it "returns course groups" do stub_get(@client, "/api/v1/courses/1/groups").to_return(json_response("course_groups.json")) groups = @client.course_groups(1) groups.count.should == 2 groups.first['name'].should == 'group 1' groups.last['id'].should == 4 end end