Sha256: 534102adfa5808ce033b1c03d19bffb86b06c796c898fedcb0f4556fbf5c8097
Contents?: true
Size: 1.6 KB
Versions: 4
Compression:
Stored size: 1.6 KB
Contents
require 'test_helper' module Vedeu describe Translator do let(:described) { Vedeu::Translator } let(:instance) { described.new(colour) } let(:colour) { '#ff0000' } describe '#initialize' do subject { instance } it { subject.must_be_instance_of(Translator) } it { subject.instance_variable_get('@colour').must_equal(colour) } end describe '#escape_sequence' do subject { instance.escape_sequence } context 'when no colour is given' do let(:colour) {} it { subject.must_equal('') } end context 'when the colour is a terminal named colour; e.g. :red' do let(:colour) { :red } it 'raises an exception since the subclasses Background and ' \ 'Foreground handle this' do proc { subject }.must_raise(NotImplemented) end end context 'when the colour is a terminal numbered colour; e.g. 122' do let(:colour) { 122 } it 'raises an exception since the subclasses Background and ' \ 'Foreground handle this' do proc { subject }.must_raise(NotImplemented) end end context 'when the colour is a HTML/CSS colour (RGB specified)' do let(:colour) { '#ff0000' } it 'raises an exception since the subclasses Background and ' \ 'Foreground handle this' do proc { subject }.must_raise(NotImplemented) end end context 'when the colour is not supported' do let(:colour) { [:not_supported] } it { subject.must_equal('') } end end end # Translator end # Vedeu
Version data entries
4 entries across 4 versions & 1 rubygems