diff options
author | Ted Gould <ted@canonical.com> | 2009-11-03 21:33:08 -0600 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-11-03 21:33:08 -0600 |
commit | bffbb2c3612b6cc73d7845c365b1dcb05907e010 (patch) | |
tree | 79112f6ae70e10060c802b70d31f1bbdc935ad66 /tests/test-loader.c | |
parent | 57642ed848ab8f6afd9e364b503633727c5ee288 (diff) | |
download | libayatana-indicator-bffbb2c3612b6cc73d7845c365b1dcb05907e010.tar.gz libayatana-indicator-bffbb2c3612b6cc73d7845c365b1dcb05907e010.tar.bz2 libayatana-indicator-bffbb2c3612b6cc73d7845c365b1dcb05907e010.zip |
Switching to checking the entires list instead of individual functions.
Diffstat (limited to 'tests/test-loader.c')
-rw-r--r-- | tests/test-loader.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/test-loader.c b/tests/test-loader.c index 4b2b096..141ad78 100644 --- a/tests/test-loader.c +++ b/tests/test-loader.c @@ -9,9 +9,7 @@ test_loader_filename_dummy_simple_accessors (void) IndicatorObject * object = indicator_object_new_from_file(BUILD_DIR "/.libs/libdummy-indicator-simple.so"); g_assert(object != NULL); - g_assert(indicator_object_get_label(object) != NULL); - g_assert(indicator_object_get_menu(object) != NULL); - g_assert(indicator_object_get_icon(object) != NULL); + g_assert(indicator_object_get_entries(object) != NULL); g_object_unref(object); |