mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
889eca9a49
--HG-- rename : services/sync/tests/unit/test_utils_atob.js => services/common/tests/unit/test_utils_atob.js rename : services/sync/tests/unit/test_utils_utf8.js => services/common/tests/unit/test_utils_utf8.js
12 lines
323 B
JavaScript
12 lines
323 B
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
Cu.import("resource://services-common/utils.js");
|
|
|
|
function run_test() {
|
|
let data = ["Zm9vYmE=", "Zm9vYmE==", "Zm9vYmE==="];
|
|
for (let d in data) {
|
|
do_check_eq(CommonUtils.safeAtoB(data[d]), "fooba");
|
|
}
|
|
}
|