Fix input strings with quotes giving "!" tagging artifacts.

This commit is contained in:
butataatawa
2016-12-02 15:58:48 +01:00
committed by Jesse Beder
parent 1f4b6d5c85
commit d025040049
2 changed files with 7 additions and 1 deletions

View File

@@ -46,6 +46,12 @@ TEST_F(EmitterTest, SimpleScalar) {
ExpectEmit("Hello, World!");
}
TEST_F(EmitterTest, SimpleQuotedScalar) {
Node n(Load("\"test\""));
out << n;
ExpectEmit("test");
}
TEST_F(EmitterTest, SimpleSeq) {
out << BeginSeq;
out << "eggs";