fune/toolkit/components/url-classifier/tests/unit/test_pref.js
Dan Banner 436f06fda4 Bug 1386684 - Enable ESLint for toolkit/components/url-classifier (automatic fixes). r=hchang
MozReview-Commit-ID: F0Z8dRaYOku

--HG--
extra : rebase_source : 3ebc9ab6ea9f1741d8a986c9217575644411e2a1
2017-08-02 16:12:07 +01:00

14 lines
504 B
JavaScript

function run_test() {
let urlUtils = Cc["@mozilla.org/url-classifier/utils;1"]
.getService(Ci.nsIUrlClassifierUtils);
// The google protocol version should be "2.2" until we enable SB v4
// by default.
equal(urlUtils.getProtocolVersion("google"), "2.2");
// Mozilla protocol version will stick to "2.2".
equal(urlUtils.getProtocolVersion("mozilla"), "2.2");
// Unknown provider version will be "2.2".
equal(urlUtils.getProtocolVersion("unknown-provider"), "2.2");
}