web-apps/vendor/requirejs/tests/hasOwnProperty/hasOwnProperty-tests.js
Maxim Kadushkin 741b10515d webapps added
2016-03-10 21:48:53 -03:00

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();
}
);