spec/zenlish/feature/symbol_value_spec.rb in zenlish-0.2.05 vs spec/zenlish/feature/symbol_value_spec.rb in zenlish-0.2.06

- old
+ new

@@ -1,10 +1,10 @@ # frozen_string_literal: true require_relative '../../../lib/zenlish/feature/enumeration_domain' # Load the class under test -require_relative '../../../lib/zenlish/feature/symbol_value' +require_relative '../../../lib/zenlish/feature/symbol_value' module Zenlish module Feature describe SymbolValue do let(:its_value) { :plural } @@ -12,13 +12,13 @@ context 'Initialization:' do it 'should be initialized with a value argument' do expect { SymbolValue.new(its_value) }.not_to raise_error end - + it 'should know its internal value' do expect(subject.val).to eq(its_value) - end + end end # context context 'Provided services:' do end # context end # describe