(input)
| 287 | describe("#propertyToValue", function () { |
| 288 | describe("type object", function () { |
| 289 | function evaluate (input) { |
| 290 | var driver = new Driver({}, {}, {}); |
| 291 | return driver.propertyToValue(input, { type: 'object' }); |
| 292 | } |
| 293 | |
| 294 | it("should not change null", function () { |
| 295 | should.strictEqual(evaluate(null), null); |