Sha256: 8393909bd546625b45bbbafa16f02d731932f41c58d6cc404e7622e7b9a1fc53

Contents?: true

Size: 1.02 KB

Versions: 405

Compression:

Stored size: 1.02 KB

Contents

require 'spec_helper'

describe Travis::Client::Job do
  let(:session) { Travis::Client.new }
  subject { session.job(4125097) }
  its(:number) { should be == '6180.2' }
  its(:state) { should be == 'passed' }
  its(:started_at) { should be_a(Time) }
  its(:finished_at) { should be_a(Time) }
  its(:inspect) { should be == "#<Travis::Client::Job: rails/rails#6180.2>" }
  its(:color) { should be == 'green' }
  its(:commit) { should be_a(Travis::Client::Commit) }
  its(:repository) { should be == session.repo('rails/rails') }
  its(:duration) { should be == 905 }

  it { should be == subject.build.jobs[1] }

  it { should_not be_pending      }
  it { should     be_started      }
  it { should     be_finished     }
  it { should     be_passed       }
  it { should_not be_errored      }
  it { should_not be_failed       }
  it { should_not be_canceled     }
  it { should     be_created      }
  it { should_not be_red          }
  it { should     be_green        }
  it { should_not be_yellow       }
  it { should_not be_unsuccessful }
end

Version data entries

405 entries across 405 versions & 3 rubygems

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