diff options
author | Ken VanDine <ken.vandine@canonical.com> | 2012-02-06 14:52:41 -0500 |
---|---|---|
committer | Ken VanDine <ken.vandine@canonical.com> | 2012-02-06 14:52:41 -0500 |
commit | 2c4628f0647760d314a70d227c88005aa4e89017 (patch) | |
tree | 9c83ede4648c8e7506c6f297f7997b8eefa4f036 /tests | |
parent | 996677f97a04275f47fcc3c540ed7df5333677fe (diff) | |
parent | 0ef39fd36500773506b9571cc9475874850a35f1 (diff) | |
download | libayatana-appindicator-2c4628f0647760d314a70d227c88005aa4e89017.tar.gz libayatana-appindicator-2c4628f0647760d314a70d227c88005aa4e89017.tar.bz2 libayatana-appindicator-2c4628f0647760d314a70d227c88005aa4e89017.zip |
* New upstream release.
* Fix include with Dbusmenu 0.5.90
* Fix GTK3 include paths in pkgconfig file (LP: #869373)
* Add title property (LP: #923971)
* Don't specify pyglib-2.0-python2.6 in LDFLAGS
* fix fallback icon of the GtkStatusIcon (LP: #820080)
* debian/control: Dbusmneu Dep to 0.5.90
* deibna/*symbols: Updated to add [set|get]_title functions
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Makefile.in | 2 | ||||
-rw-r--r-- | tests/test-libappindicator.c | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/tests/Makefile.in b/tests/Makefile.in index 4cc9396..2241c74 100644 --- a/tests/Makefile.in +++ b/tests/Makefile.in @@ -264,6 +264,8 @@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MONO_DEPENDENCY_CFLAGS = @MONO_DEPENDENCY_CFLAGS@ MONO_DEPENDENCY_LIBS = @MONO_DEPENDENCY_LIBS@ +MONO_NUNIT_CFLAGS = @MONO_NUNIT_CFLAGS@ +MONO_NUNIT_LIBS = @MONO_NUNIT_LIBS@ NM = @NM@ NMEDIT = @NMEDIT@ NUNIT_CFLAGS = @NUNIT_CFLAGS@ diff --git a/tests/test-libappindicator.c b/tests/test-libappindicator.c index cadf783..7afd3ba 100644 --- a/tests/test-libappindicator.c +++ b/tests/test-libappindicator.c @@ -123,10 +123,12 @@ test_libappindicator_init_set_props (void) app_indicator_set_status(ci, APP_INDICATOR_STATUS_ACTIVE); app_indicator_set_attention_icon(ci, "my-attention-name"); + app_indicator_set_title(ci, "My Title"); g_assert(!g_strcmp0("my-id", app_indicator_get_id(ci))); g_assert(!g_strcmp0("my-name", app_indicator_get_icon(ci))); g_assert(!g_strcmp0("my-attention-name", app_indicator_get_attention_icon(ci))); + g_assert(!g_strcmp0("My Title", app_indicator_get_title(ci))); g_assert(app_indicator_get_status(ci) == APP_INDICATOR_STATUS_ACTIVE); g_assert(app_indicator_get_category(ci) == APP_INDICATOR_CATEGORY_APPLICATION_STATUS); |