Sha256: dc9ee311773b5a49822f1cbf2a4e6b9f7d31458fc48d40a2b496937f993fd9bc

Contents?: true

Size: 626 Bytes

Versions: 78

Compression:

Stored size: 626 Bytes

Contents

require 'spec_helper'

describe Travis::Client::User do
  # attributes :login, :name, :email, :gravatar_id, :locale, :is_syncing, :synced_at, :correct_scopes
  subject { Travis::Client.new(:access_token => 'token').user }
  its(:login) { should be == 'rkh' }
  its(:name) { should be == 'Konstantin Haase' }
  its(:email) { should be == 'konstantin.haase@gmail.com' }
  its(:gravatar_id) { should be == '5c2b452f6eea4a6d84c105ebd971d2a4' }
  its(:locale) { should be == 'en' }
  its(:is_syncing) { should be false }
  its(:synced_at) { should be_a(Time) }

  it { should_not be_syncing }
  it { should be_correct_scopes }
end

Version data entries

78 entries across 78 versions & 1 rubygems

Version Path
travis-1.8.12.travis.1101.9 spec/client/user_spec.rb
travis-1.8.11 spec/client/user_spec.rb
travis-1.8.11.travis.1098.9 spec/client/user_spec.rb
travis-1.8.11.travis.1081.9 spec/client/user_spec.rb
travis-1.8.11.travis.1059.11 spec/client/user_spec.rb
travis-1.8.11.travis.1058.11 spec/client/user_spec.rb
travis-1.8.11.travis.1056.11 spec/client/user_spec.rb
travis-1.8.11.travis.1051.11 spec/client/user_spec.rb
travis-1.8.11.travis.1048.11 spec/client/user_spec.rb
travis-1.8.11.travis.1044.11 spec/client/user_spec.rb
travis-1.8.11.travis.1041.11 spec/client/user_spec.rb
travis-1.8.11.travis.1040.11 spec/client/user_spec.rb
travis-1.8.11.travis.1026.11 spec/client/user_spec.rb
travis-1.8.11.travis.1025.11 spec/client/user_spec.rb
travis-1.8.11.travis.1024.11 spec/client/user_spec.rb
travis-1.8.11.travis.1022.11 spec/client/user_spec.rb
travis-1.8.11.travis.1021.11 spec/client/user_spec.rb
travis-1.8.11.travis.1020.11 spec/client/user_spec.rb