From bf1310389ed2f2bbff529929e1606b59c8a20dfa Mon Sep 17 00:00:00 2001 From: Simon Sapin Date: Wed, 22 Apr 2015 08:52:18 +0200 Subject: [PATCH] Add a test for std::fmt::Write::write_char --- src/test/run-pass/ifmt.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/test/run-pass/ifmt.rs b/src/test/run-pass/ifmt.rs index ea9db9b1e1f8d..393a3967d96d8 100644 --- a/src/test/run-pass/ifmt.rs +++ b/src/test/run-pass/ifmt.rs @@ -196,9 +196,11 @@ fn test_write() { write!(w, "{}", "hello"); writeln!(w, "{}", "line"); writeln!(w, "{foo}", foo="bar"); + w.write_char('☃'); + w.write_str("str"); } - t!(buf, "34helloline\nbar\n"); + t!(buf, "34helloline\nbar\n☃str"); } // Just make sure that the macros are defined, there's not really a lot that we