0
0
Fork 0
rubella/spec/unit/rubella/output/ascii/used_symbols_eql_spec.rb

20 lines
508 B
Ruby

require 'spec_helper'
describe Rubella::Output::ASCII, '.used_symbols' do
it "sets the name of the current set of symbols" do
output = Rubella::Output::ASCII.new nil
expect(output.used_symbols).to eq('shades_ascii')
output.used_symbols= "numbers"
expect(output.used_symbols).to eq('numbers')
end
it "throws an AgrumentError if set is not available" do
output = Rubella::Output::ASCII.new nil
expect{ output.used_symbols= "foobar" }.to raise_error(ArgumentError)
end
end