Sha256: 4ef95d9b5092a345ed9d51a5485e95f1f0feaedc9d0dbab547674deae5beef91
Contents?: true
Size: 1.12 KB
Versions: 4
Compression:
Stored size: 1.12 KB
Contents
# encoding: utf-8 require 'spec_helper' describe Github::Client::Activity::Starring, '#starring?' do let(:user) { 'peter-murach' } let(:repo) { 'github' } let(:request_path) { "/user/starred/#{user}/#{repo}" } after { reset_authentication_for subject } context "with username ane reponame passed" do context "this repo is being watched by the user" before do stub_get(request_path). to_return(:body => "[]", :status => 404, :headers => {:user_agent => subject.user_agent}) end it "should return false if resource not found" do starring = subject.starring? user, repo starring.should be_false end it "should return true if resoure found" do stub_get(request_path).to_return(:body => "[]", :status => 200, :headers => {:user_agent => subject.user_agent}) starring = subject.starring? user, repo starring.should be_true end end context "without username and reponame passed" do it "should fail validation " do expect { subject.starring? user }.to raise_error(ArgumentError) end end end # starring?
Version data entries
4 entries across 4 versions & 1 rubygems