Sha256: c4ce1fa83ee77b1476eb789d201d16f832af489fa3b6598a0d1c41c36aa2e6db

Contents?: true

Size: 548 Bytes

Versions: 29

Compression:

Stored size: 548 Bytes

Contents

"use strict";

var assert         = require("chai").assert
  , ensureFunction = require("../../function/ensure");

describe("function/ensure", function () {
	it("Should return input value", function () {
		var value = function () { return true; };
		assert.equal(ensureFunction(value), value);
	});
	it("Should crash on invalid value", function () {
		try {
			ensureFunction(null);
			throw new Error("Unexpected");
		} catch (error) {
			assert.equal(error.name, "TypeError");
			assert(error.message.includes("is not a function"));
		}
	});
});

Version data entries

29 entries across 29 versions & 2 rubygems

Version Path
optimacms-0.1.61 spec/dummy/node_modules/type/test/function/ensure.js
govuk_publishing_components-18.0.0 node_modules/type/test/function/ensure.js
govuk_publishing_components-17.21.0 node_modules/type/test/function/ensure.js
govuk_publishing_components-17.20.0 node_modules/type/test/function/ensure.js
govuk_publishing_components-17.19.1 node_modules/type/test/function/ensure.js
govuk_publishing_components-17.19.0 node_modules/type/test/function/ensure.js
govuk_publishing_components-17.18.0 node_modules/type/test/function/ensure.js
govuk_publishing_components-17.17.0 node_modules/type/test/function/ensure.js
govuk_publishing_components-17.16.0 node_modules/type/test/function/ensure.js
govuk_publishing_components-17.15.0 node_modules/type/test/function/ensure.js
govuk_publishing_components-17.14.0 node_modules/type/test/function/ensure.js
govuk_publishing_components-17.13.0 node_modules/type/test/function/ensure.js
govuk_publishing_components-17.12.2 node_modules/type/test/function/ensure.js
govuk_publishing_components-17.12.1 node_modules/type/test/function/ensure.js
govuk_publishing_components-17.12.0 node_modules/type/test/function/ensure.js
govuk_publishing_components-17.11.0 node_modules/type/test/function/ensure.js
govuk_publishing_components-17.10.0 node_modules/type/test/function/ensure.js
govuk_publishing_components-17.9.0 node_modules/type/test/function/ensure.js
govuk_publishing_components-17.8.0 node_modules/type/test/function/ensure.js
govuk_publishing_components-17.7.0 node_modules/type/test/function/ensure.js