Page Menu
Home
Code
Search
Configure Global Search
Log In
Files
F945153
misc.js
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Subscribers
None
misc.js
View Options
if
(
!
dojo
.
_hasResource
[
"dojox.lang.tests.misc"
]){
//_hasResource checks added by build. Do not use _hasResource directly in your code.
dojo
.
_hasResource
[
"dojox.lang.tests.misc"
]
=
true
;
dojo
.
provide
(
"dojox.lang.tests.misc"
);
dojo
.
require
(
"dojox.lang.functional"
);
(
function
(){
var
df
=
dojox
.
lang
.
functional
,
fun
=
df
.
lambda
(
"100*a + 10*b + c"
),
result
=
[];
df
.
forIn
({
a
:
1
,
b
:
2
},
function
(
v
,
i
){
result
.
push
(
"["
+
i
+
"] = "
+
v
);
});
tests
.
register
(
"dojox.lang.tests.misc"
,
[
function
testZip1
(
t
){
t
.
assertEqual
(
df
.
zip
([
1
,
2
,
3
],
[
4
,
5
,
6
]),
[[
1
,
4
],
[
2
,
5
],
[
3
,
6
]]);
},
function
testZip2
(
t
){
t
.
assertEqual
(
df
.
zip
([
1
,
2
],
[
3
,
4
],
[
5
,
6
]),
[[
1
,
3
,
5
],
[
2
,
4
,
6
]]);
},
function
testUnzip1
(
t
){
t
.
assertEqual
(
df
.
unzip
([[
1
,
4
],
[
2
,
5
],
[
3
,
6
]]),
[[
1
,
2
,
3
],
[
4
,
5
,
6
]]);
},
function
testUnzip2
(
t
){
t
.
assertEqual
(
df
.
unzip
([[
1
,
3
,
5
],
[
2
,
4
,
6
]]),
[[
1
,
2
],
[
3
,
4
],
[
5
,
6
]]);
},
function
testConst1
(
t
){
t
.
assertEqual
(
df
.
constFun
(
5
)(),
5
);
},
function
testConst2
(
t
){
t
.
assertEqual
(
df
.
constFun
(
8
)(),
8
);
},
function
testInvoke1
(
t
){
t
.
assertEqual
(
df
.
invoke
(
"max"
)(
Math
,
1
,
2
),
2
);
},
function
testInvoke2
(
t
){
t
.
assertEqual
(
df
.
invoke
(
"min"
)(
Math
,
1
,
2
),
1
);
},
function
testPluck1
(
t
){
t
.
assertEqual
(
df
.
pluck
(
"PI"
)(
Math
),
Math
.
PI
);
},
function
testPluck2
(
t
){
t
.
assertEqual
(
df
.
pluck
(
"E"
)(
Math
),
Math
.
E
);
},
function
testMixer
(
t
){
t
.
assertEqual
(
df
.
mixer
(
fun
,
[
1
,
2
,
0
])(
3
,
1
,
2
),
123
);
},
function
testFlip
(
t
){
t
.
assertEqual
(
df
.
flip
(
fun
)(
3
,
2
,
1
),
123
);
},
function
testCompose1
(
t
){
t
.
assertEqual
(
df
.
lambda
([
"+5"
,
"*3"
])(
8
),
8
*
3
+
5
);
},
function
testCompose2
(
t
){
t
.
assertEqual
(
df
.
lambda
([
"+5"
,
"*3"
].
reverse
())(
8
),
(
8
+
5
)
*
3
);
},
function
testForIn
(
t
){
t
.
assertEqual
(
result
.
sort
().
join
(
", "
),
"[a] = 1, [b] = 2"
);
}
]);
})();
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Apr 26, 01:09 (5 d, 4 h ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
27391
Default Alt Text
misc.js (1 KB)
Attached To
rZEDHG ZedLegacy
Event Timeline
Log In to Comment