From 8a39ee361feb9bf46d728ff1ba4f07ca1d9610b1 Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Thu, 19 Jun 2014 09:22:53 +0200 Subject: Imported Upstream version 1.3 --- src/pkg/html/escape_test.go | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'src/pkg/html/escape_test.go') diff --git a/src/pkg/html/escape_test.go b/src/pkg/html/escape_test.go index b405d4b4a..2d7ad8ac2 100644 --- a/src/pkg/html/escape_test.go +++ b/src/pkg/html/escape_test.go @@ -64,6 +64,24 @@ var unescapeTests = []unescapeTest{ "Footnote‡", "Footnote‡", }, + // Handle single ampersand. + { + "copySingleAmpersand", + "&", + "&", + }, + // Handle ampersand followed by non-entity. + { + "copyAmpersandNonEntity", + "text &test", + "text &test", + }, + // Handle "&#". + { + "copyAmpersandHash", + "text &#", + "text &#", + }, } func TestUnescape(t *testing.T) { -- cgit v1.2.3