File: test.js

package info (click to toggle)
node-define-property 0.2.5-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 108 kB
  • ctags: 6
  • sloc: makefile: 4; sh: 2
file content (53 lines) | stat: -rw-r--r-- 1,322 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
'use strict';

/* deps: mocha */
var assert = require('assert');
var should = require('should');
var define = require('./');

describe('define', function () {
  it('should define a property and make it non-enumerable:', function () {
    var obj = {};
    define(obj, 'foo', function(val) {
      return val.toUpperCase();
    });

    assert.deepEqual(obj, {});
    assert.equal(obj.foo('bar'), 'BAR');
  });

  it('should allow any arbitrary value to be assigned:', function () {
    var obj = {};
    define(obj, 'foo', null);
    define(obj, 'bar');
    define(obj, 'baz', {});
    assert.equal(obj.foo, null);
    assert.equal(obj.bar, undefined);
    assert.deepEqual(obj.baz, {});
  });

  it('should define a property with accessor descriptors:', function () {
    var obj = {bar: 'baz'};
    define(obj, 'foo', {
      configurable: true,
      get: function() {
        return this._val;
      },
      set: function(key) {
        define(this, '_val', this[key]);
      }
    });
    obj.foo = 'bar';
    assert.equal(obj.foo, 'baz');
  });

  it('should throw an error when invalid args are passed:', function () {
    (function () {
      define();
    }).should.throw('expected an object or function.');

    (function () {
      define({});
    }).should.throw('expected `prop` to be a string.');
  });
});