Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

/* Any copyright is dedicated to the Public Domain.
"use strict";
const { splitMethod } = ChromeUtils.importESModule(
);
add_task(function test_Connection_splitMethod() {
for (const t of [42, null, true, {}, [], undefined]) {
Assert.throws(() => splitMethod(t), /TypeError/, `${typeof t} throws`);
}
for (const s of ["", ".", "foo.", ".bar", "foo.bar.baz"]) {
Assert.throws(
() => splitMethod(s),
/Invalid method format: '.*'/,
`"${s}" throws`
);
}
deepEqual(splitMethod("foo.bar"), {
domain: "foo",
command: "bar",
});
});