aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/Makefile.am4
-rw-r--r--tests/test-empathy-presence-chooser.c29
2 files changed, 32 insertions, 1 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 9a91e9d92..6078e1a90 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -25,12 +25,14 @@ noinst_PROGRAMS = \
contact-manager \
contact-run-until-ready \
contact-run-until-ready-2 \
- empetit
+ empetit \
+ test-empathy-presence-chooser
contact_manager_SOURCES = contact-manager.c
contact_run_until_ready_SOURCES = contact-run-until-ready.c
contact_run_until_ready_2_SOURCES = contact-run-until-ready-2.c
empetit_SOURCES = empetit.c
+test_empathy_presence_chooser_SOURCES = test-empathy-presence-chooser.c
check_PROGRAMS = check-main
TESTS = check-main
diff --git a/tests/test-empathy-presence-chooser.c b/tests/test-empathy-presence-chooser.c
new file mode 100644
index 000000000..b4766c803
--- /dev/null
+++ b/tests/test-empathy-presence-chooser.c
@@ -0,0 +1,29 @@
+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
+
+#include <config.h>
+
+#include <gtk/gtk.h>
+
+#include <libempathy-gtk/empathy-ui-utils.h>
+#include <libempathy-gtk/empathy-presence-chooser.h>
+
+int
+main (int argc, char **argv)
+{
+ gtk_init (&argc, &argv);
+ empathy_gtk_init ();
+
+ GtkWidget *window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
+ GtkWidget *chooser = empathy_presence_chooser_new ();
+ gtk_container_add (GTK_CONTAINER (window), chooser);
+
+ gtk_window_set_default_size (GTK_WINDOW (window), 150, -1);
+ gtk_widget_show_all (window);
+
+ g_signal_connect_swapped (window, "destroy",
+ G_CALLBACK (gtk_main_quit), NULL);
+
+ gtk_main ();
+
+ return 0;
+}