Evas tests: Added a test to verify the last bug is fixed.

SVN revision: 61252
This commit is contained in:
Tom Hacohen 2011-07-11 15:56:51 +00:00
parent b55c9032aa
commit e4dcb66095
1 changed files with 3 additions and 0 deletions

View File

@ -929,6 +929,9 @@ START_TEST(evas_textblock_escaping)
fail_if(evas_textblock_escape_string_range_get(tmp, tmp + 7));
fail_if(evas_textblock_escape_string_range_get(tmp, tmp + 5));
const char *buf = "This · is";
evas_object_textblock_text_markup_set(tb, buf);
fail_if(strcmp(evas_object_textblock_text_markup_get(tb), buf));
END_TB_TEST();
}