node/tools/eslint/lib/testers/event-generator-tester.js
silverwind d9b8758f47 tools: update ESLint to 2.7.0
PR-URL: https://github.com/nodejs/node/pull/6132
Reviewed-By: Brian White <mscdex@mscdex.net>
Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: thefourtheye <thechargingvolcano@gmail.com>
2016-04-20 16:24:21 -07:00

64 lines
2.2 KiB
JavaScript

/**
* @fileoverview Helpers to test EventGenerator interface.
* @author Toru Nagashima
* @copyright 2015 Toru Nagashima. All rights reserved.
* See LICENSE file in root directory for full license.
*/
"use strict";
/* global describe, it */
//------------------------------------------------------------------------------
// Requirements
//------------------------------------------------------------------------------
var assert = require("assert");
//------------------------------------------------------------------------------
// Public Interface
//------------------------------------------------------------------------------
module.exports = {
/**
* Overrideable `describe` function to test.
* @param {string} text - A description.
* @param {function} method - A test logic.
* @returns {any} The returned value with the test logic.
*/
describe: (typeof describe === "function") ? describe : /* istanbul ignore next */ function(text, method) {
return method.apply(this);
},
/**
* Overrideable `it` function to test.
* @param {string} text - A description.
* @param {function} method - A test logic.
* @returns {any} The returned value with the test logic.
*/
it: (typeof it === "function") ? it : /* istanbul ignore next */ function(text, method) {
return method.apply(this);
},
/**
* Does some tests to check a given object implements the EventGenerator interface.
* @param {object} instance - An object to check.
* @returns {void}
*/
testEventGeneratorInterface: function(instance) {
this.describe("should implement EventGenerator interface", function() {
this.it("should have `emitter` property.", function() {
assert.equal(typeof instance.emitter, "object");
assert.equal(typeof instance.emitter.emit, "function");
});
this.it("should have `enterNode` property.", function() {
assert.equal(typeof instance.enterNode, "function");
});
this.it("should have `leaveNode` property.", function() {
assert.equal(typeof instance.leaveNode, "function");
});
}.bind(this));
}
};