mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
skip to not support color tty environment.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67138 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
019864b4a5
commit
19408c785c
1 changed files with 12 additions and 0 deletions
|
@ -60,6 +60,10 @@ RSpec.describe Bundler::Source do
|
|||
before { Bundler.ui = Bundler::UI::Shell.new }
|
||||
|
||||
it "should return a string with the spec name and version and locked spec version" do
|
||||
if Bundler.ui.instance_variable_get(:@shell).is_a?(Bundler::Thor::Shell::Basic)
|
||||
skip "tty color is not supported with Thor::Shell::Basic environment."
|
||||
end
|
||||
|
||||
expect(subject.version_message(spec)).to eq("nokogiri >= 1.6\e[32m (was < 1.5)\e[0m")
|
||||
end
|
||||
end
|
||||
|
@ -79,6 +83,10 @@ RSpec.describe Bundler::Source do
|
|||
before { Bundler.ui = Bundler::UI::Shell.new }
|
||||
|
||||
it "should return a string with the locked spec version in yellow" do
|
||||
if Bundler.ui.instance_variable_get(:@shell).is_a?(Bundler::Thor::Shell::Basic)
|
||||
skip "tty color is not supported with Thor::Shell::Basic environment."
|
||||
end
|
||||
|
||||
expect(subject.version_message(spec)).to eq("nokogiri 1.6.1\e[33m (was 1.7.0)\e[0m")
|
||||
end
|
||||
end
|
||||
|
@ -92,6 +100,10 @@ RSpec.describe Bundler::Source do
|
|||
before { Bundler.ui = Bundler::UI::Shell.new }
|
||||
|
||||
it "should return a string with the locked spec version in green" do
|
||||
if Bundler.ui.instance_variable_get(:@shell).is_a?(Bundler::Thor::Shell::Basic)
|
||||
skip "tty color is not supported with Thor::Shell::Basic environment."
|
||||
end
|
||||
|
||||
expect(subject.version_message(spec)).to eq("nokogiri 1.7.1\e[32m (was 1.7.0)\e[0m")
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue