Sha256: a12239ab7c9430daa98c11275dd1292090a383bb70503a8d99d6c3fd78897510

Contents?: true

Size: 1.19 KB

Versions: 119

Compression:

Stored size: 1.19 KB

Contents

require 'spec_helper'

describe Travis::CLI::Endpoint do
  example "travis endpoint" do
    run_cli('endpoint').should be_success
    stdout.should be == "https://api.travis-ci.org/\n"
  end

  example "travis endpoint --pro" do
    run_cli('endpoint', '--pro').should be_success
    stdout.should be == "https://api.travis-ci.com/\n"
  end

  example "travis endpoint --com" do
    run_cli('endpoint', '--com').should be_success
    stdout.should be == "https://api.travis-ci.com/\n"
  end

  example "travis endpoint -e http://localhost:3000/" do
    run_cli('endpoint', '-e', 'http://localhost:3000/').should be_success
    stdout.should be == "http://localhost:3000/\n"
  end

  example "TRAVIS_ENDPOINT=http://localhost:3000/ travis endpoint" do
    ENV['TRAVIS_ENDPOINT'] = "http://localhost:3000/"
    run_cli('endpoint').should be_success
    stdout.should be == "http://localhost:3000/\n"
  end

  example "travis endpoint --github" do
    run_cli('endpoint', '--github').should be_success
    stdout.should be == "https://api.github.com\n"
  end

  example "travis endpoint -i" do
    run_cli('endpoint', '-i').should be_success
    stdout.should be == "API endpoint: https://api.travis-ci.org/\n"
  end
end

Version data entries

119 entries across 119 versions & 2 rubygems

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