Sha256: 228436bf14ef5ec2836bb69ceab1bd1bd9cbb4c414a805a06214988a2dd7ff44

Contents?: true

Size: 1.04 KB

Versions: 381

Compression:

Stored size: 1.04 KB

Contents

require 'spec_helper'

describe Travis::Client::Account do
  context "from all accounts" do
    let(:session) { Travis::Client.new }
    subject { session.accounts.first }
    its(:name) { should be == 'Konstantin Haase' }
    its(:login) { should be == 'rkh' }
    its(:type) { should be == 'user' }
    its(:repos_count) { should be == 200 }
    its(:inspect) { should be == "#<Travis::Client::Account: rkh>" }
  end

  context "known account" do
    let(:session) { Travis::Client.new }
    subject { session.account('rkh') }
    its(:name) { should be == 'Konstantin Haase' }
    its(:login) { should be == 'rkh' }
    its(:type) { should be == 'user' }
    its(:repos_count) { should be == 200 }
    its(:inspect) { should be == "#<Travis::Client::Account: rkh>" }
  end

  context "known account" do
    let(:session) { Travis::Client.new }
    subject { session.account('foo') }
    its(:name) { should be_nil }
    its(:login) { should be == 'foo' }
    its(:type) { should be_nil }
    its(:inspect) { should be == "#<Travis::Client::Account: foo>" }
  end
end

Version data entries

381 entries across 381 versions & 3 rubygems

Version Path
travis-1.11.1 spec/client/account_spec.rb
travis-1.11.0 spec/client/account_spec.rb
travis-1.10.1.travis.1341.9 spec/client/account_spec.rb
travis-1.10.1.travis.1321.9 spec/client/account_spec.rb
travis-1.10.1.travis.1312.9 spec/client/account_spec.rb
travis-1.10.1.travis.1311.9 spec/client/account_spec.rb
travis-1.10.1.travis.1305.9 spec/client/account_spec.rb
travis-1.10.0 spec/client/account_spec.rb
travis-1.9.2.travis.1304.9 spec/client/account_spec.rb
travis-1.9.2.travis.1303.9 spec/client/account_spec.rb
travis-1.10.0.pre.rc4 spec/client/account_spec.rb
travis-1.10.0.pre.rc3 spec/client/account_spec.rb
travis-1.10.0.pre.rc2 spec/client/account_spec.rb
travis-1.9.2.travis.1288.9 spec/client/account_spec.rb
travis-1.9.2.travis.1285.9 spec/client/account_spec.rb
travis-1.9.2.travis.1279.9 spec/client/account_spec.rb
travis-1.10.0.pre.rc1 spec/client/account_spec.rb
travis-1.9.2.travis.1254.9 spec/client/account_spec.rb
travis-1.9.2.travis.1236.9 spec/client/account_spec.rb
travis-1.9.2.travis.1224.9 spec/client/account_spec.rb