mirror of
https://github.com/biobulkbende/biobulkbende.org.git
synced 2025-01-14 03:56:23 +00:00
15 lines
386 B
JavaScript
15 lines
386 B
JavaScript
"use strict";
|
|
|
|
var assert = require("chai").assert
|
|
, identity = require("../../function/identity");
|
|
|
|
describe("function/identity", function () {
|
|
it("Should return first argument", function () {
|
|
assert.equal(identity("foo"), "foo");
|
|
var object = {};
|
|
assert.equal(identity(object), object);
|
|
assert.equal(identity(), undefined);
|
|
assert.equal(identity(1, 2, 3), 1);
|
|
});
|
|
});
|