Sha256: 2edec33c9a608c54790d082d2346eaf900739375c9708edd1bf9b28a3fcbc09d
Contents?: true
Size: 1.14 KB
Versions: 2
Compression:
Stored size: 1.14 KB
Contents
# encoding: utf-8 require 'spec_helper' describe Github::Activity::Watching, '#list' do let(:user) { 'peter-murach' } let(:repo) { 'github' } let(:request_path) { "/user/subscriptions/#{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 watching = subject.watching? user, repo watching.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}) watching = subject.watching? user, repo watching.should be_true end end context "without username and reponame passed" do it "should fail validation " do expect { subject.watching?(nil, nil) }.to raise_error(ArgumentError) end end end # watching?
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
github_api-0.8.1 | spec/github/activity/watching/watching_spec.rb |
github_api-0.8.0 | spec/github/activity/watching/watching_spec.rb |