--- a/chunker/spec/chunker_spec.rb Sat Nov 08 18:59:05 2008 +0000
+++ b/chunker/spec/chunker_spec.rb Sun Nov 09 00:27:36 2008 +0000
@@ -67,14 +67,14 @@
describe Chunker::DataParser do
- it "doesn't include content above the __END__ marker" do
+ it "doesn't include content above the __END__ token" do
klass = Class.new
dp = Chunker::DataParser.new( klass, StringIO.new( FILE_TEXT_MULTIPLE ))
dp.instance_variable_get( :@scanner ).string.
should_not =~ /This is stuff we shouldn't see/
end
- it "doesn't contain the __END__ marker itself" do
+ it "doesn't contain the __END__ token itself" do
klass = Class.new
dp = Chunker::DataParser.new( klass, StringIO.new( FILE_TEXT ))
dp.instance_variable_get( :@scanner ).string.should_not =~ /^__END__/