Spec -> EmptySpec. Improve comments.

This commit is contained in:
Victor Zverovich
2014-01-01 09:06:25 -08:00
parent 59c5612e87
commit fec6bc04f5
2 changed files with 12 additions and 13 deletions

View File

@@ -444,6 +444,7 @@ TEST(WriterTest, pad) {
TEST(WriterTest, PadString) {
EXPECT_EQ("test ", str(Writer() << pad("test", 8)));
EXPECT_EQ("test******", str(Writer() << pad("test", 10, '*')));
}
TEST(WriterTest, NoConflictWithIOManip) {