2014-12-31 15:59:32 -05:00
|
|
|
require 'spec_helper'
|
2010-04-03 00:43:46 -04:00
|
|
|
|
2014-12-31 15:59:32 -05:00
|
|
|
RSpec.describe "String extensions" do
|
2010-04-03 00:43:46 -04:00
|
|
|
[ :gray, :red, :green, :yellow, :blue, :purple, :cyan, :white ].each_with_index do |color, i|
|
|
|
|
it "should have #{color} color" do
|
2014-05-15 16:47:57 -04:00
|
|
|
expect(color.to_s.send(color)).to eq("\e[1;#{30+i}m#{color}\e[0m")
|
2010-04-03 00:43:46 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should have #{color}ish color" do
|
2014-05-15 16:47:57 -04:00
|
|
|
expect(color.to_s.send(:"#{color}ish")).to eq("\e[0;#{30+i}m#{color}\e[0m")
|
2010-04-03 00:43:46 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should have black and pale colors" do
|
2014-05-15 16:47:57 -04:00
|
|
|
expect("black".send(:black)).to eq("black".send(:grayish))
|
|
|
|
expect("pale".send(:pale)).to eq("pale".send(:whiteish))
|
|
|
|
expect("pale".send(:pale)).to eq("\e[0;37mpale\e[0m")
|
|
|
|
expect("whiteish".send(:whiteish)).to eq("\e[0;37mwhiteish\e[0m")
|
2010-04-03 00:43:46 -04:00
|
|
|
end
|
|
|
|
end
|