out<<YAML::Literal<<"literal scalar\nthat may span\nmany, many\nlines and have \"whatever\" crazy\tsymbols that we like";
out<<YAML::EndSeq;
desiredOutput="- simple scalar\n- 'explicit single-quoted scalar'\n- \"explicit double-quoted scalar\"\n- \"auto-detected\\x0adouble-quoted scalar\"\n- a non-\"auto-detected\" double-quoted scalar\n- |\n literal scalar\n that may span\n many, many\n lines and have \"whatever\" crazy\tsymbols that we like";
RunSpecTest(&Spec::InLiteralsNewlinesArePreserved,"2.13","In literals, newlines are preserved",passed,total);
RunSpecTest(&Spec::InFoldedScalarsNewlinesBecomeSpaces,"2.14","In folded scalars, newlines become spaces",passed,total);
RunSpecTest(&Spec::FoldedNewlinesArePreservedForMoreIndentedAndBlankLines,"2.15","Folded newlines are preserved for \"more indented\" and blank lines",passed,total);