spec/cli/open_spec.rb in travis-1.6.9.travis.463.6 vs spec/cli/open_spec.rb in travis-1.6.9.travis.479.6

- old
+ new

@@ -1,25 +1,25 @@ require 'spec_helper' describe Travis::CLI::Open do example 'travis open -p' do run_cli('open', '-p').should be_success - stdout.should match(/https:\/\/travis-ci.org\/[\w\W]*\/travis/) + stdout.should match(/https:\/\/travis-ci.org\/[\w\W]*\/travis\.rb/) end example 'travis open 6180 -p' do run_cli('open', '6180', '-p').should be_success - stdout.should match(/https:\/\/travis-ci.org\/[\w\W]*\/travis\/builds\/4125095/) + stdout.should match(/https:\/\/travis-ci.org\/[\w\W]*\/travis\.rb\/builds\/4125095/) end example 'travis open 6180.1 -p' do run_cli('open', '6180.1', '-p').should be_success - stdout.should match(/https:\/\/travis-ci.org\/[\w\W]*\/travis\/jobs\/4125096/) + stdout.should match(/https:\/\/travis-ci.org\/[\w\W]*\/travis\.rb\/jobs\/4125096/) end example 'travis open -pg' do run_cli('open', '-pg').should be_success - stdout.should match(/https:\/\/github.com\/[\w\W]*\/travis/) + stdout.should match(/https:\/\/github.com\/[\w\W]*\/travis\.rb/) end example 'travis open 6180 -pg' do run_cli('open', '6180', '-pg').should be_success stdout.should be == "https://github.com/rails/rails/compare/6581d798e830...a0265b98f16c\n"