Sha256: 2533b68db6607ebfd78bc7a5a6a183e28a46536b919eb4fa8179b17a0b054bc6

Contents?: true

Size: 852 Bytes

Versions: 11

Compression:

Stored size: 852 Bytes

Contents

require_relative '../../spec_helper'

# Load the class under test
require_relative '../../../lib/rley/syntax/verbatim_symbol'

module Rley # Open this namespace to avoid module qualifier prefixes
  module Syntax # Open this namespace to avoid module qualifier prefixes
    describe VerbatimSymbol do
      let(:sample_name) { 'cheapest' }
      subject { VerbatimSymbol.new(sample_name) }

      context 'Initialization:' do
        it 'should be created with a word' do
          expect { VerbatimSymbol.new('cheapest') }.not_to raise_error
        end

        it 'should know its name' do
          expect(subject.name).to eq(sample_name)
        end

        it 'should know its text representation' do
          expect(subject.text).to eq(sample_name)
        end
      end # context

    end # describe
  end # module
end # module

# End of file

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
rley-0.0.15 spec/rley/syntax/verbatim_symbol_spec.rb
rley-0.0.14 spec/rley/syntax/verbatim_symbol_spec.rb
rley-0.0.13 spec/rley/syntax/verbatim_symbol_spec.rb
rley-0.0.12 spec/rley/syntax/verbatim_symbol_spec.rb
rley-0.0.11 spec/rley/syntax/verbatim_symbol_spec.rb
rley-0.0.10 spec/rley/syntax/verbatim_symbol_spec.rb
rley-0.0.09 spec/rley/syntax/verbatim_symbol_spec.rb
rley-0.0.08 spec/rley/syntax/verbatim_symbol_spec.rb
rley-0.0.07 spec/rley/syntax/verbatim_symbol_spec.rb
rley-0.0.06 spec/rley/syntax/verbatim_symbol_spec.rb
rley-0.0.05 spec/rley/syntax/verbatim_symbol_spec.rb