blob: 3fef2c565c015cad9349cc9653e6586e46e58f53 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
if(!dojo._hasResource["tests.back-hash"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
dojo._hasResource["tests.back-hash"] = true;
dojo.provide("tests.back-hash");
dojo.require("dojo.back");
(function(){
tests.register("tests.back.hash", [
function getAndSet(t) {
var cases = [
"test",
"test with spaces",
"test%20with%20encoded",
"test+with+pluses",
" leading",
"trailing ",
"under_score",
"extra#mark",
"extra?instring",
"extra&instring",
"#leadinghash"
];
var b = dojo.back;
function verify(s){
dojo.back.setHash(s);
t.is(s, dojo.back.getHash(s));
}
dojo.forEach(cases, verify);
}
]);
})();
}
|