Add standalone line test
diff --git a/test/mustache_test.dart b/test/mustache_test.dart
index 85b0167..f962818 100644
--- a/test/mustache_test.dart
+++ b/test/mustache_test.dart
@@ -257,6 +257,13 @@
 			expect(fn, throwsUnimplementedError);
 		});
 	});
+
+	group('Other', () {
+		test('Standalone line', () {
+			var val = parse('|\n{{#bob}}\n{{/bob}}\n|').renderString({'bob': []});
+			expect(val, equals('|\n|'));
+		});
+	});
 }
 
 renderFail(source, values) {