scarlet
Version:
The simple fast javascript interceptor for methods and properties.
19 lines (12 loc) • 471 B
JavaScript
var assert = require("assert");
describe("Given lib/extensions/", function(){
describe("When #require()", function(){
var ext = require("../../../../lib/extensions");
it("Then should have an extended object instance", function(){
assert(ext.object !== null, "Could not find extended object instance");
});
it("Then should have an enumerable instance", function(){
assert(ext.enumerable !== null, "Could not find enumerable instance");
});
});
});