Last active
August 29, 2015 13:57
-
-
Save adammck/9590540 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- FAIL: TestCommentsStandalone (0.00 seconds) | |
mustache_test.go:52: returned "Begin.\n\nEnd.\n", | |
expected "Begin.\nEnd.\n" | |
--- FAIL: TestCommentsIndentedStandalone (0.00 seconds) | |
mustache_test.go:63: returned "Begin.\n \nEnd.\n", | |
expected "Begin.\nEnd.\n" | |
--- FAIL: TestCommentsStandaloneLineEndings (0.00 seconds) | |
mustache_test.go:74: returned "|\r\n\r\n|", | |
expected "|\r\n|" | |
--- FAIL: TestCommentsStandaloneWithoutPreviousLine (0.00 seconds) | |
mustache_test.go:85: returned " \n!", | |
expected "!" | |
--- FAIL: TestCommentsStandaloneWithoutNewline (0.00 seconds) | |
mustache_test.go:96: returned "!\n ", | |
expected "!\n" | |
--- FAIL: TestCommentsMultilineStandalone (0.00 seconds) | |
mustache_test.go:107: returned "Begin.\n\nEnd.\n", | |
expected "Begin.\nEnd.\n" | |
--- FAIL: TestCommentsIndentedMultilineStandalone (0.00 seconds) | |
mustache_test.go:118: returned "Begin.\n \nEnd.\n", | |
expected "Begin.\nEnd.\n" | |
--- FAIL: TestDelimitersSections (0.00 seconds) | |
mustache_test.go:181: returned "[\n I got interpolated.\n |data|\n\n\n\n {{data}}\n I got interpolated.\n\n]\n", | |
expected "[\n I got interpolated.\n |data|\n\n {{data}}\n I got interpolated.\n]\n" | |
--- FAIL: TestDelimitersInvertedSections (0.00 seconds) | |
mustache_test.go:193: returned "[\n I got interpolated.\n |data|\n\n\n\n {{data}}\n I got interpolated.\n\n]\n", | |
expected "[\n I got interpolated.\n |data|\n\n {{data}}\n I got interpolated.\n]\n" | |
--- FAIL: TestDelimitersPartialInheritence (0.00 seconds) | |
mustache_test.go:208: returned "[ .yes. ]\n\n[ .yes. ]\n", | |
expected "[ .yes. ]\n[ .yes. ]\n" | |
--- FAIL: TestDelimitersStandaloneTag (0.00 seconds) | |
mustache_test.go:256: returned "Begin.\n\nEnd.\n", | |
expected "Begin.\nEnd.\n" | |
--- FAIL: TestDelimitersIndentedStandaloneTag (0.00 seconds) | |
mustache_test.go:267: returned "Begin.\n \nEnd.\n", | |
expected "Begin.\nEnd.\n" | |
--- FAIL: TestDelimitersStandaloneLineEndings (0.00 seconds) | |
mustache_test.go:278: returned "|\r\n\r\n|", | |
expected "|\r\n|" | |
--- FAIL: TestDelimitersStandaloneWithoutPreviousLine (0.00 seconds) | |
mustache_test.go:289: returned " \n=", | |
expected "=" | |
--- FAIL: TestDelimitersStandaloneWithoutNewline (0.00 seconds) | |
mustache_test.go:300: returned "=\n ", | |
expected "=\n" | |
--- FAIL: TestInterpolationAmpersand (0.00 seconds) | |
mustache_test.go:375: returned "These characters should not be HTML escaped: \n", | |
expected "These characters should not be HTML escaped: & \" < >\n" | |
--- FAIL: TestInterpolationAmpersandIntegerInterpolation (0.00 seconds) | |
mustache_test.go:411: returned "\" miles an hour!\"", | |
expected "\"85 miles an hour!\"" | |
--- FAIL: TestInterpolationAmpersandDecimalInterpolation (0.00 seconds) | |
mustache_test.go:447: returned "\" jiggawatts!\"", | |
expected "\"1.21 jiggawatts!\"" | |
--- FAIL: TestInterpolationDottedNamesBasicInterpolation (0.00 seconds) | |
mustache_test.go:492: returned "\"\" == \"Joe\"", | |
expected "\"Joe\" == \"Joe\"" | |
--- FAIL: TestInterpolationDottedNamesTripleMustacheInterpolation (0.00 seconds) | |
mustache_test.go:504: returned "\"\" == \"Joe\"", | |
expected "\"Joe\" == \"Joe\"" | |
--- FAIL: TestInterpolationDottedNamesAmpersandInterpolation (0.00 seconds) | |
mustache_test.go:516: returned "\"\" == \"\"", | |
expected "\"Joe\" == \"Joe\"" | |
--- FAIL: TestInterpolationDottedNamesArbitraryDepth (0.00 seconds) | |
mustache_test.go:528: returned "\"\" == \"Phil\"", | |
expected "\"Phil\" == \"Phil\"" | |
--- FAIL: TestInterpolationDottedNamesInitialResolution (0.00 seconds) | |
mustache_test.go:564: returned "\"\" == \"Phil\"", | |
expected "\"Phil\" == \"Phil\"" | |
--- FAIL: TestInterpolationAmpersandSurroundingWhitespace (0.00 seconds) | |
mustache_test.go:600: returned "| |", | |
expected "| --- |" | |
--- FAIL: TestInterpolationAmpersandStandalone (0.00 seconds) | |
mustache_test.go:636: returned " \n", | |
expected " ---\n" | |
--- FAIL: TestInterpolationTripleMustacheWithPadding (0.00 seconds) | |
mustache_test.go:660: returned "||", | |
expected "|---|" | |
--- FAIL: TestInterpolationAmpersandWithPadding (0.00 seconds) | |
mustache_test.go:672: returned "||", | |
expected "|---|" | |
--- FAIL: TestInvertedDoubled (0.00 seconds) | |
mustache_test.go:749: returned "* first\n\n* second\n* third\n\n", | |
expected "* first\n* second\n* third\n" | |
--- FAIL: TestInvertedDottedNamesTruthy (0.00 seconds) | |
mustache_test.go:796: returned "\"Not Here\" == \"\"", | |
expected "\"\" == \"\"" | |
--- FAIL: TestInvertedStandaloneLines (0.00 seconds) | |
mustache_test.go:868: returned "| This Is\n|\n\n| A Line\n", | |
expected "| This Is\n|\n| A Line\n" | |
--- FAIL: TestInvertedStandaloneIndentedLines (0.00 seconds) | |
mustache_test.go:880: returned "| This Is\n |\n \n| A Line\n", | |
expected "| This Is\n|\n| A Line\n" | |
--- FAIL: TestInvertedStandaloneLineEndings (0.00 seconds) | |
mustache_test.go:892: returned "|\r\n\r\n|", | |
expected "|\r\n|" | |
--- FAIL: TestInvertedStandaloneWithoutPreviousLine (0.00 seconds) | |
mustache_test.go:904: returned " ^\n/", | |
expected "^\n/" | |
--- FAIL: TestInvertedStandaloneWithoutNewline (0.00 seconds) | |
mustache_test.go:916: returned "^/\n ", | |
expected "^\n/\n" | |
--- FAIL: TestPartialsFailedLookup (0.00 seconds) | |
mustache_test.go:958: returned "Could not find partial \"text\"", | |
expected "\"\"" | |
--- FAIL: TestPartialsStandaloneLineEndings (0.00 seconds) | |
mustache_test.go:1031: returned "|\r\n>\r\n|", | |
expected "|\r\n>|" | |
--- FAIL: TestPartialsStandaloneWithoutPreviousLine (0.00 seconds) | |
mustache_test.go:1045: returned " >\n>\n>", | |
expected " >\n >>" | |
--- FAIL: TestPartialsStandaloneWithoutNewline (0.00 seconds) | |
mustache_test.go:1059: returned ">\n >\n>", | |
expected ">\n >\n >" | |
--- FAIL: TestPartialsStandaloneIndentation (0.00 seconds) | |
mustache_test.go:1074: returned "\\\n |\n<\n->\n|\n\n/\n", | |
expected "\\\n |\n <\n->\n |\n/\n" | |
--- FAIL: TestSectionsDeeplyNestedContexts (0.00 seconds) | |
mustache_test.go:1142: returned "1\n121\n12321\n1234321\n123454321\n\n1234321\n\n12321\n\n121\n\n1\n\n", | |
expected "1\n121\n12321\n1234321\n123454321\n1234321\n12321\n121\n1\n" | |
--- FAIL: TestSectionsDoubled (0.00 seconds) | |
mustache_test.go:1178: returned "* first\n\n* second\n* third\n\n", | |
expected "* first\n* second\n* third\n" | |
--- FAIL: TestSectionsDottedNamesTruthy (0.00 seconds) | |
mustache_test.go:1261: returned "\"\" == \"Here\"", | |
expected "\"Here\" == \"Here\"" | |
--- FAIL: TestSectionsStandaloneLines (0.00 seconds) | |
mustache_test.go:1333: returned "| This Is\n|\n\n| A Line\n", | |
expected "| This Is\n|\n| A Line\n" | |
--- FAIL: TestSectionsIndentedStandaloneLines (0.00 seconds) | |
mustache_test.go:1345: returned "| This Is\n |\n \n| A Line\n", | |
expected "| This Is\n|\n| A Line\n" | |
--- FAIL: TestSectionsStandaloneLineEndings (0.00 seconds) | |
mustache_test.go:1357: returned "|\r\n\r\n|", | |
expected "|\r\n|" | |
--- FAIL: TestSectionsStandaloneWithoutPreviousLine (0.00 seconds) | |
mustache_test.go:1369: returned " #\n/", | |
expected "#\n/" | |
--- FAIL: TestSectionsStandaloneWithoutNewline (0.00 seconds) | |
mustache_test.go:1381: returned "#/\n ", | |
expected "#\n/\n" | |
FAIL | |
exit status 1 | |
FAIL _/Users/adammck/code/go/mustache 0.029s |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment