spec/rley/ptree/terminal_node_spec.rb in rley-0.4.06 vs spec/rley/ptree/terminal_node_spec.rb in rley-0.4.07
- old
+ new
@@ -14,10 +14,10 @@
let(:sample_range) { double('fake-range') }
subject { TerminalNode.new(sample_token, sample_range) }
context 'Initialization:' do
- it "should be bound to a token" do
+ it 'should be bound to a token' do
expect(subject.token).to eq(sample_token)
end
end # context
context 'Provided services:' do