spec/zenlish/inflect/literal_asis_spec.rb in zenlish-0.2.05 vs spec/zenlish/inflect/literal_asis_spec.rb in zenlish-0.2.06
- old
+ new
@@ -10,22 +10,22 @@
context 'Initialization:' do
it 'should be initialized with a text literal' do
expect { LiteralAsIs.new('s') }.not_to raise_error
end
-
+
it 'should know its text value' do
expect(subject.text).to eq('s')
end
end # context
context 'Provided services:' do
it 'should return the affix during word form generation' do
- headings = double('fake-headings')
+ headings = double('fake-headings')
lexeme = double('fake-lexeme')
values = double('fake-values')
expect(subject.generate(headings, lexeme, values)).to eq('s')
end
end # context
end # describe
end # module
-end # module
\ No newline at end of file
+end # module