aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorXan Lopez <xan@igalia.com>2012-03-14 21:42:14 +0800
committerXan Lopez <xan@igalia.com>2012-03-14 21:42:14 +0800
commit035fbe726fca2110054ac45965fe699ca8e30eed (patch)
tree0f26764f7e57ddc4b89513e5fd9da8a77bb9f05a /tests
parent4a0f71e24f7df2fe66a433416eb276d9b60992c7 (diff)
downloadgsoc2013-epiphany-035fbe726fca2110054ac45965fe699ca8e30eed.tar
gsoc2013-epiphany-035fbe726fca2110054ac45965fe699ca8e30eed.tar.gz
gsoc2013-epiphany-035fbe726fca2110054ac45965fe699ca8e30eed.tar.bz2
gsoc2013-epiphany-035fbe726fca2110054ac45965fe699ca8e30eed.tar.lz
gsoc2013-epiphany-035fbe726fca2110054ac45965fe699ca8e30eed.tar.xz
gsoc2013-epiphany-035fbe726fca2110054ac45965fe699ca8e30eed.tar.zst
gsoc2013-epiphany-035fbe726fca2110054ac45965fe699ca8e30eed.zip
ephy-embed-single: remove network status
We are not using it. Easy enough to bring it back if needed.
Diffstat (limited to 'tests')
-rw-r--r--tests/ephy-embed-single-test.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/tests/ephy-embed-single-test.c b/tests/ephy-embed-single-test.c
index 884efc461..2b4768bb0 100644
--- a/tests/ephy-embed-single-test.c
+++ b/tests/ephy-embed-single-test.c
@@ -51,21 +51,6 @@ test_embed_single_get_from_shell ()
}
static void
-test_embed_single_network_status ()
-{
- EphyEmbedSingle *single;
-
- single = EPHY_EMBED_SINGLE (ephy_embed_shell_get_embed_single (embed_shell));
- g_assert (EPHY_IS_EMBED_SINGLE (single));
-
- /* Defaults to TRUE */
- g_assert (ephy_embed_single_get_network_status (single));
-
- ephy_embed_single_set_network_status (single, FALSE);
- g_assert (ephy_embed_single_get_network_status (single) == FALSE);
-}
-
-static void
test_embed_single_form_auth ()
{
EphyEmbedSingle *single;
@@ -110,8 +95,6 @@ main (int argc, char *argv[])
test_embed_single_new);
g_test_add_func ("/embed/ephy-embed-single/get_from_shell",
test_embed_single_get_from_shell);
- g_test_add_func ("/embed/ephy-embed-single/network_status",
- test_embed_single_network_status);
g_test_add_func ("/embed/ephy-embed-single/form_auth",
test_embed_single_form_auth);