mirror of
https://github.com/cp6/my-idlers.git
synced 2025-04-20 18:18:36 +00:00
8 lines
290 B
JavaScript
Vendored
8 lines
290 B
JavaScript
Vendored
"use strict";
|
|
|
|
var assert = require("chai").assert
|
|
, isImplemented = require("../../../string_/includes/is-implemented");
|
|
|
|
describe("string_/includes/is-implemented", function () {
|
|
it("Should return boolean", function () { assert.equal(typeof isImplemented(), "boolean"); });
|
|
});
|