summaryrefslogtreecommitdiffstats
path: root/toolkit/components/search/tests/xpcshell/test_location_funnelcake.js
diff options
context:
space:
mode:
Diffstat (limited to 'toolkit/components/search/tests/xpcshell/test_location_funnelcake.js')
-rw-r--r--toolkit/components/search/tests/xpcshell/test_location_funnelcake.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/toolkit/components/search/tests/xpcshell/test_location_funnelcake.js b/toolkit/components/search/tests/xpcshell/test_location_funnelcake.js
new file mode 100644
index 000000000..970ba5521
--- /dev/null
+++ b/toolkit/components/search/tests/xpcshell/test_location_funnelcake.js
@@ -0,0 +1,17 @@
+/* Any copyright is dedicated to the Public Domain.
+ http://creativecommons.org/publicdomain/zero/1.0/ */
+
+function run_test() {
+ Services.prefs.setCharPref("browser.search.geoip.url", 'data:application/json,{"country_code": "US"}');
+ // funnelcake builds start with "mozilla"
+ Services.prefs.setCharPref("distribution.id", 'mozilla38');
+ setUpGeoDefaults();
+
+ Services.search.init(() => {
+ equal(Services.search.defaultEngine.name, "A second test engine");
+
+ do_test_finished();
+ run_next_test();
+ });
+ do_test_pending();
+}