projects
/
platform
/
upstream
/
glib.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3129bac
)
Improve GIcon test coverage
author
Matthias Clasen
<mclasen@redhat.com>
Mon, 4 Jun 2012 09:59:27 +0000
(
05:59
-0400)
committer
Matthias Clasen
<mclasen@redhat.com>
Mon, 4 Jun 2012 10:04:29 +0000
(06:04 -0400)
gio/tests/g-icon.c
patch
|
blob
|
history
diff --git
a/gio/tests/g-icon.c
b/gio/tests/g-icon.c
index 5c9778d788c51ca935d753995fa19a92d81dc764..0058278abbb88f4050639632c163969911c2355a 100644
(file)
--- a/
gio/tests/g-icon.c
+++ b/
gio/tests/g-icon.c
@@
-43,6
+43,7
@@
test_g_icon_serialize (void)
GError *error;
gint origin;
GIcon *i;
+ GFile *file;
error = NULL;
@@
-51,6
+52,11
@@
test_g_icon_serialize (void)
uri = "file:///some/native/path/to/an/icon.png";
location = g_file_new_for_uri (uri);
icon = g_file_icon_new (location);
+
+ g_object_get (icon, "file", &file, NULL);
+ g_assert (file == location);
+ g_object_unref (file);
+
data = g_icon_to_string (icon);
g_assert_cmpstr (data, ==, "/some/native/path/to/an/icon.png");
icon2 = g_icon_new_for_string (data, &error);