spec/github/repos/downloads/get_spec.rb in github_api-0.8.0 vs spec/github/repos/downloads/get_spec.rb in github_api-0.8.1
- old
+ new
@@ -1,17 +1,16 @@
# encoding: utf-8
require 'spec_helper'
describe Github::Repos::Downloads, '#get' do
- let(:github) { Github.new }
let(:user) { 'peter-murach' }
let(:repo) { 'github' }
let(:download_id) { 1 }
let(:request_path) { "/repos/#{user}/#{repo}/downloads/#{download_id}" }
- after { reset_authentication_for(github) }
+ after { reset_authentication_for(subject) }
before {
stub_get(request_path).
to_return(:body => body, :status => status,
:headers => {:content_type => "application/json; charset=utf-8"})
@@ -26,11 +25,11 @@
it "should fail to get resource without download id" do
expect { subject.get user, repo, nil }.to raise_error(ArgumentError)
end
it "should get the resource" do
- github.repos.downloads.get user, repo, download_id
+ subject.get user, repo, download_id
a_get(request_path).should have_been_made
end
it "should get download information" do
download = subject.get user, repo, download_id
@@ -42,17 +41,11 @@
download = subject.get user, repo, download_id
download.should be_a Hashie::Mash
end
end
- context "resource not found" do
- let(:body) { "" }
- let(:status) { [404, "Not Found"] }
-
- it "should fail to retrive resource" do
- expect {
- subject.get user, repo, download_id
- }.to raise_error(Github::Error::NotFound)
- end
+ it_should_behave_like 'request failure' do
+ let(:requestable) { subject.get user, repo, download_id }
end
+
end # get