oolong
Version:
Utilities for objects. Simple, tasteful and plentiful. Supports inherited properties.
19 lines (15 loc) • 536 B
JavaScript
var O = require("../..")
var demand = require("must")
describe("Oolong.property", function() {
it("must return a function that returns the given property", function() {
var obj = {name: "John"}
O.property("name")(obj).must.equal("John")
})
it("must return inherited properties", function() {
var obj = Object.create({name: "John"})
O.property("name")(obj).must.equal("John")
})
it("must return undefined given a non-existent property", function() {
demand(O.property("name")({})).be.undefined()
})
})