diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-10-27 23:22:55 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-10-29 17:38:31 +0800 |
commit | 4c2eb652ef61dd0f5ccac27e47f261417793aa73 (patch) | |
tree | 1883254e26335fdd02a70f3e18c120db4ea7fc5b /tests/test-empathy-account-assistant.c | |
parent | fb12577193262ad17ef2fc49d2324a7b23458610 (diff) | |
download | gsoc2013-empathy-4c2eb652ef61dd0f5ccac27e47f261417793aa73.tar gsoc2013-empathy-4c2eb652ef61dd0f5ccac27e47f261417793aa73.tar.gz gsoc2013-empathy-4c2eb652ef61dd0f5ccac27e47f261417793aa73.tar.bz2 gsoc2013-empathy-4c2eb652ef61dd0f5ccac27e47f261417793aa73.tar.lz gsoc2013-empathy-4c2eb652ef61dd0f5ccac27e47f261417793aa73.tar.xz gsoc2013-empathy-4c2eb652ef61dd0f5ccac27e47f261417793aa73.tar.zst gsoc2013-empathy-4c2eb652ef61dd0f5ccac27e47f261417793aa73.zip |
move test app needing user interaction to interactive/
tests/ should be used only for automatic unit tests.
Diffstat (limited to 'tests/test-empathy-account-assistant.c')
-rw-r--r-- | tests/test-empathy-account-assistant.c | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/tests/test-empathy-account-assistant.c b/tests/test-empathy-account-assistant.c deleted file mode 100644 index 4f1c9a49b..000000000 --- a/tests/test-empathy-account-assistant.c +++ /dev/null @@ -1,25 +0,0 @@ -#include <config.h> - -#include <gtk/gtk.h> - -#include <libempathy-gtk/empathy-ui-utils.h> -#include "empathy-account-assistant.h" - -int main (int argc, char **argv) -{ - GtkWidget *assistant; - - gtk_init (&argc, &argv); - empathy_gtk_init (); - - assistant = empathy_account_assistant_show (NULL); - - gtk_widget_show_all (assistant); - - g_signal_connect_swapped (assistant, "destroy", - G_CALLBACK (gtk_main_quit), NULL); - - gtk_main (); - - return 0; -} |