1.1 --- a/gplate/tags/tests/gplate-text-tag-test.c Sat Jul 03 23:24:33 2010 -0500
1.2 +++ b/gplate/tags/tests/gplate-text-tag-test.c Sun Jul 04 02:02:59 2010 -0500
1.3 @@ -27,30 +27,26 @@
1.4 gplate_text_tag_test_syntax_plain(GPlateTagTestFixture *fixture,
1.5 gconstpointer data)
1.6 {
1.7 - fixture->template_string = "simple template";
1.8 - fixture->expected = "simple template";
1.9 -
1.10 - gplate_tag_test_output(fixture, data);
1.11 + gplate_tag_test_output(fixture, data,
1.12 + "simple template", "simple template");
1.13 }
1.14
1.15 static void
1.16 gplate_text_tag_test_syntax_keywords(GPlateTagTestFixture *fixture,
1.17 gconstpointer data)
1.18 {
1.19 - fixture->template_string = "extends if else endif for endfor";
1.20 - fixture->expected = "extends if else endif for endfor";
1.21 -
1.22 - gplate_tag_test_output(fixture, data);
1.23 + gplate_tag_test_output(fixture, data,
1.24 + "extends if else endif for endfor",
1.25 + "extends if else endif for endfor");
1.26 }
1.27
1.28 static void
1.29 gplate_text_tag_test_syntax_keywords_case_sensitive(GPlateTagTestFixture *fixture,
1.30 gconstpointer data)
1.31 {
1.32 - fixture->template_string = "EXteNds iF eLse enDif fOr enDFor";
1.33 - fixture->expected = "EXteNds iF eLse enDif fOr enDFor";
1.34 -
1.35 - gplate_tag_test_output(fixture, data);
1.36 + gplate_tag_test_output(fixture, data,
1.37 + "EXteNds iF eLse enDif fOr enDFor",
1.38 + "EXteNds iF eLse enDif fOr enDFor");
1.39 }
1.40
1.41 /******************************************************************************