1 # Copyright 2007-2014 Greg Hurrell. All rights reserved.
2 # Licensed under the terms of the BSD 2-clause license.
6 describe Walrat::Parslet do
7 it 'complains if sent "parse" message' do
8 # Parslet is an abstract superclass, "parse" is the responsibility of the
11 Walrat::Parslet.new.parse('bar')
12 end.to raise_error(NotImplementedError)