1
0
Fork 0
mirror of https://github.com/awesome-print/awesome_print synced 2023-03-27 23:22:34 -04:00
awesome_print/spec/string_spec.rb
2010-04-02 21:43:46 -07:00

18 lines
622 B
Ruby

require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
describe "String extensions" do
[ :gray, :red, :green, :yellow, :blue, :purple, :cyan, :white ].each_with_index do |color, i|
it "should have #{color} color" do
color.to_s.send(color).should == "\033[1;#{30+i}m#{color}\033[0m"
end
it "should have #{color}ish color" do
color.to_s.send(:"#{color}ish").should == "\033[0;#{30+i}m#{color}\033[0m"
end
end
it "should have black and pale colors" do
"black".send(:black).should == "black".send(:grayish)
"pale".send(:pale).should == "pale".send(:whiteish)
end
end