Sha256: b2dfc3ca7ca743c49b87a420934a8e63f42e4ae0e9287bbd8facb7fda1d4543b
Contents?: true
Size: 1.39 KB
Versions: 14
Compression:
Stored size: 1.39 KB
Contents
# encoding: utf-8 require 'spec_helper' describe Github::Repos::Downloads, '#list' do let(:user) { 'peter-murach' } let(:repo) { 'github' } let(:request_path) { "/repos/#{user}/#{repo}/downloads" } before { stub_get(request_path). to_return(:body => body, :status => status, :headers => {:content_type => "application/json; charset=utf-8"}) } after { reset_authentication_for(subject) } context "resource found" do let(:body) { fixture('repos/downloads.json') } let(:status) { 200 } it { should respond_to :all } it { expect { subject.list }.to raise_error(ArgumentError) } it "should fail to get resource without username" do expect { subject.list user }.to raise_error(ArgumentError) end it "should get the resources" do subject.list user, repo a_get(request_path).should have_been_made end it_should_behave_like 'an array of resources' do let(:requestable) { subject.list user, repo } end it "should get download information" do downloads = subject.list user, repo downloads.first.name.should == 'new_file.jpg' end it "should yield to a block" do yielded = [] result = subject.list(user, repo) { |obj| yielded << obj } yielded.should == result end end it_should_behave_like 'request failure' do let(:requestable) { subject.list user, repo } end end # list
Version data entries
14 entries across 14 versions & 1 rubygems