1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
require 'spec_helper'
describe Parslet::Atoms::Sequence do
include Parslet
let(:sequence) { described_class.new }
describe '>> shortcut' do
let(:sequence) { str('a') >> str('b') }
context "when chained with different atoms" do
before(:each) {
# Chain something else to the sequence parslet. If it modifies the
# parslet atom in place, we'll notice:
sequence >> str('d')
}
let!(:chained) { sequence >> str('c') }
it "is side-effect free" do
chained.should parse('abc')
chained.should_not parse('abdc')
end
end
end
end
|