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/core_ext/string_spec.rb

21 lines
725 B
Ruby
Raw Normal View History

require 'spec_helper'
2010-04-03 00:43:46 -04:00
RSpec.describe 'String extensions' do
[:gray, :red, :green, :yellow, :blue, :purple, :cyan, :white].each_with_index do |color, i|
2010-04-03 00:43:46 -04:00
it "should have #{color} color" do
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
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
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