Sha256: 691bd55cebab157f18cc858e91b51eae5abd17e569b7e84175c0004b8f4955fe
Contents?: true
Size: 463 Bytes
Versions: 21
Compression:
Stored size: 463 Bytes
Contents
require 'spec_helper' describe Travis::CLI::Login do example "travis login", :unless => Travis::CLI.windows? do run_cli('login') { |i| i.puts('rkh', 'password') }.should be_success run_cli('whoami').out.should be == "rkh\n" end example "travis login (with bad credentials)", :unless => Travis::CLI.windows? do run_cli('login') { |i| i.puts('rkh', 'wrong password') }.should_not be_success run_cli('whoami').should_not be_success end end
Version data entries
21 entries across 21 versions & 1 rubygems