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.8.14.travis.1178.9 spec/cli/endpoint_spec.rb
travis-1.8.14.travis.1175.9 spec/cli/endpoint_spec.rb
travis-1.8.14.travis.1172.9 spec/cli/endpoint_spec.rb
travis-1.8.14.travis.1164.9 spec/cli/endpoint_spec.rb
travis-1.8.14.travis.1163.9 spec/cli/endpoint_spec.rb
travis-1.8.14.travis.1162.9 spec/cli/endpoint_spec.rb
travis-1.8.14.travis.1160.9 spec/cli/endpoint_spec.rb
travis-1.8.13 spec/cli/endpoint_spec.rb
travis-1.8.14.travis.1156.9 spec/cli/endpoint_spec.rb
travis-1.8.14.travis.1155.9 spec/cli/endpoint_spec.rb
travis-1.8.13.travis.1152.9 spec/cli/endpoint_spec.rb
travis-1.8.13.travis.1148.9 spec/cli/endpoint_spec.rb
travis-1.8.12 spec/cli/endpoint_spec.rb
travis-1.8.13.travis.1141.9 spec/cli/endpoint_spec.rb
travis-1.8.12.travis.1136.9 spec/cli/endpoint_spec.rb
travis-1.8.12.travis.1135.9 spec/cli/endpoint_spec.rb
travis-1.8.12.travis.1125.9 spec/cli/endpoint_spec.rb
travis-1.8.12.pre.rc1 spec/cli/endpoint_spec.rb
travis-1.8.12.travis.1116.9 spec/cli/endpoint_spec.rb
travis-1.8.12.travis.1111.9 spec/cli/endpoint_spec.rb