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 it "returns account groups" do stub_get(@client, "/api/v1/accounts/1/groups").to_return(json_response("account_groups.json")) groups = @client.account_groups(1) groups.count.should == 2 groups.first['name'].should == '2010' groups.last['id'].should == 3 end end