spec/zenlish/feature/identifier_value_spec.rb in zenlish-0.2.05 vs spec/zenlish/feature/identifier_value_spec.rb in zenlish-0.2.06
- old
+ new
@@ -1,9 +1,9 @@
# frozen_string_literal: true
# Load the class under test
-require_relative '../../../lib/zenlish/feature/identifier_value'
+require_relative '../../../lib/zenlish/feature/identifier_value'
module Zenlish
module Feature
describe IdentifierValue do
let(:its_value) { 'CommonForm' }
@@ -11,16 +11,16 @@
context 'Initialization:' do
it 'should be initialized with a value argument' do
expect { IdentifierValue.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
end # module
-end # module
\ No newline at end of file
+end # module