Sha256: dabcda6cdcc865f14e92c7015078aaf73c927661a591053114bbbdfd34bfcf2e

Contents?: true

Size: 858 Bytes

Versions: 152

Compression:

Stored size: 858 Bytes

Contents

require 'spec_helper'

describe Travis::CLI::Help do
  example "travis help" do
    run_cli('help').should be_success
    stdout.should include("Usage: travis COMMAND")
  end

  example "travis --help" do
    run_cli('--help').should be_success
    stdout.should include("Usage: travis COMMAND")
  end

  example "travis -h" do
    run_cli('-h').should be_success
    stdout.should include("Usage: travis COMMAND")
  end

  example "travis -?" do
    run_cli('-?').should be_success
    stdout.should include("Usage: travis COMMAND")
  end

  example "travis help endpoint" do
    run_cli('help', 'endpoint').should be_success
    stdout.should include("Usage: travis endpoint [options]")
  end

  example "travis endpoint --help" do
    run_cli('endpoint', '--help').should be_success
    stdout.should include("Usage: travis endpoint [options]")
  end
end

Version data entries

152 entries across 152 versions & 1 rubygems

Version Path
travis-1.6.15.travis.580.6 spec/cli/help_spec.rb
travis-1.6.15.travis.566.6 spec/cli/help_spec.rb
travis-1.6.15.travis.565.6 spec/cli/help_spec.rb
travis-1.6.15.travis.564.6 spec/cli/help_spec.rb
travis-1.6.15.travis.563.6 spec/cli/help_spec.rb
travis-1.6.15.travis.562.6 spec/cli/help_spec.rb
travis-1.6.15.travis.561.6 spec/cli/help_spec.rb
travis-1.6.15.travis.560.6 spec/cli/help_spec.rb
travis-1.6.15.travis.559.6 spec/cli/help_spec.rb
travis-1.6.15.travis.558.6 spec/cli/help_spec.rb
travis-1.6.15.travis.557.6 spec/cli/help_spec.rb
travis-1.6.15.travis.556.6 spec/cli/help_spec.rb
travis-1.6.15.travis.555.6 spec/cli/help_spec.rb
travis-1.6.15.travis.554.6 spec/cli/help_spec.rb
travis-1.6.15.travis.552.6 spec/cli/help_spec.rb
travis-1.6.15.travis.551.6 spec/cli/help_spec.rb
travis-1.6.15.travis.550.6 spec/cli/help_spec.rb
travis-1.6.15.travis.547.6 spec/cli/help_spec.rb
travis-1.6.15.travis.544.6 spec/cli/help_spec.rb
travis-1.6.14.travis.543.6 spec/cli/help_spec.rb