Sha256: 334827b11518e031e57fd33b7c0ed99cbf0a7933de38c6dbda1e5c54ab0aa739

Contents?: true

Size: 394 Bytes

Versions: 16

Compression:

Stored size: 394 Bytes

Contents

require 'spec_helper'

describe Travis::CLI::Open do
  example 'travis restart' do
    run_cli('restart').should be_success
    $params['build_id'].should be == "4125095"
    $params['job_id'].should be_nil
  end

  example 'travis restart 6180.1' do
    run_cli('restart', '6180.1').should be_success
    $params['build_id'].should be_nil
    $params['job_id'].should be == "4125096"
  end
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
travis-1.4.0 spec/cli/restart_spec.rb
travis-1.3.1 spec/cli/restart_spec.rb
travis-1.3.0 spec/cli/restart_spec.rb
travis-1.2.8 spec/cli/restart_spec.rb
travis-1.2.7 spec/cli/restart_spec.rb
travis-1.2.6 spec/cli/restart_spec.rb
travis-1.2.5 spec/cli/restart_spec.rb
travis-1.2.4 spec/cli/restart_spec.rb
travis-1.2.3 spec/cli/restart_spec.rb
travis-1.2.2 spec/cli/restart_spec.rb
travis-1.2.1 spec/cli/restart_spec.rb
travis-1.2.0 spec/cli/restart_spec.rb
travis-1.1.3 spec/cli/restart_spec.rb
travis-1.1.2 spec/cli/restart_spec.rb
travis-1.1.1 spec/cli/restart_spec.rb
travis-1.1.0 spec/cli/restart_spec.rb