web-apps/vendor/requirejs/tests/hasOwnProperty/hasOwnProperty-tests.js

15 lines
427 B
JavaScript
Raw Normal View History

2016-03-11 00:48:53 +00:00
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();
}
);