15 lines
427 B
JavaScript
15 lines
427 B
JavaScript
|
require(["toString", "hasOwnProperty", "prototype"], function(toString, hop, p) {
|
||
|
doh.register(
|
||
|
"hasOwnPropertyTests",
|
||
|
[
|
||
|
function hasOwnPropertyTests(t){
|
||
|
t.is("toString", toString.name);
|
||
|
t.is("hasOwnProperty", hop.name);
|
||
|
t.is("prototype", p.name);
|
||
|
}
|
||
|
]
|
||
|
);
|
||
|
doh.run();
|
||
|
}
|
||
|
);
|