Sha256: b5d65574644ec0eef04019d549a4b533d919db5338ddc90f4fc47a7f94e9db17
Contents?: true
Size: 432 Bytes
Versions: 20
Compression:
Stored size: 432 Bytes
Contents
require File.expand_path(File.dirname(__FILE__) + '/../../spec_helper') require 'gherkin/formatter/pretty_listener' module Gherkin module Formatter describe Colors do include Colors it "should colour stuff red" do failed("hello").should == "\e[31mhello\e[0m" end it "should be possible to specify no colouring" do failed("hello", true).should == "hello" end end end end
Version data entries
20 entries across 20 versions & 1 rubygems