summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/libpeas/plugin-info.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/libpeas/plugin-info.c b/tests/libpeas/plugin-info.c
index 75a58d3..8253811 100644
--- a/tests/libpeas/plugin-info.c
+++ b/tests/libpeas/plugin-info.c
@@ -93,6 +93,18 @@ test_plugin_info_verify_full_info (PeasEngine *engine)
g_assert_cmpstr (peas_plugin_info_get_external_data (info, "External"), ==, "external data");
g_assert_cmpstr (peas_plugin_info_get_external_data (info, "X-External"), ==, "external data");
+
+ {
+ static const char *strprops[] = { "name", "description", "icon-name", "website", "copyright", "version", "help-uri", NULL };
+
+ for (guint i = 0; strprops[i]; i++)
+ {
+ char *str = NULL;
+ g_object_get (info, strprops[i], &str, NULL);
+ g_assert_nonnull (str);
+ g_free (str);
+ }
+ }
}
static void