DocumentServer/OfficeWeb/vendor/requirejs/tests/hasOwnProperty/hasOwnProperty-tests.js
2015-04-28 17:59:00 +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();
}
);