Sha256: 71d63834b8ca1d0015b4d3a312eb12c8e15573c72ba9ca84d1a8516f2201f157

Contents?: true

Size: 1.63 KB

Versions: 14

Compression:

Stored size: 1.63 KB

Contents

# encoding: utf-8

require 'spec_helper'

describe Github::Repos, '#languages' do
  let(:user) { 'peter-murach' }
  let(:repo) { 'github' }
  let(:request_path) { "/repos/#{user}/#{repo}/languages" }

  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/languages.json') }
    let(:status) { 200 }

    it "should raise error when no user/repo parameters" do
      expect { subject.languages nil, repo }.to raise_error(ArgumentError)
    end

    it "should raise error when no repository" do
      expect { subject.languages user, nil }.to raise_error(ArgumentError)
    end

    it "should find resources" do
      subject.languages user, repo
      a_get(request_path).should have_been_made
    end

    it "should return hash of languages" do
      languages = subject.languages user, repo
      languages.should be_an Hash
      languages.should have(2).keys
    end

    it "should get language information" do
      languages = subject.languages user, repo
      languages.keys.first.should == 'Ruby'
    end

    it "should yield to a block" do
      subject.should_receive(:languages).with(user, repo).and_yield('web')
      subject.languages(user, repo) { |param| 'web'}
    end
  end

  context "resource not found" do
    let(:body)   { '' }
    let(:status) { 404 }

    it "should fail to get resource" do
      expect {
        subject.languages user, repo
      }.to raise_error(Github::Error::NotFound)
    end
  end
end # languages

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
github_api-0.8.11 spec/github/repos/languages_spec.rb
github_api-0.8.10 spec/github/repos/languages_spec.rb
github_api-0.8.9 spec/github/repos/languages_spec.rb
github_api-0.8.8 spec/github/repos/languages_spec.rb
github_api-0.8.7 spec/github/repos/languages_spec.rb
github_api-0.8.6 spec/github/repos/languages_spec.rb
github_api-0.8.5 spec/github/repos/languages_spec.rb
github_api-0.8.4 spec/github/repos/languages_spec.rb
github_api-0.8.3 spec/github/repos/languages_spec.rb
github_api-0.8.2 spec/github/repos/languages_spec.rb
github_api-0.8.1 spec/github/repos/languages_spec.rb
github_api-0.8.0 spec/github/repos/languages_spec.rb
github_api-0.7.2 spec/github/repos/languages_spec.rb
github_api-0.7.1 spec/github/repos/languages_spec.rb