cylon/lib/test/test-driver.js

24 lines
481 B
JavaScript
Raw Normal View History

/*
* Test driver
* cylonjs.com
*
* Copyright (c) 2013-2014 The Hybrid Group
* Licensed under the Apache 2.0 license.
*/
'use strict';
var Driver = require('../driver'),
Utils = require('../utils');
2014-05-07 09:24:43 +08:00
var TestDriver;
module.exports = TestDriver = function TestDriver() {
TestDriver.__super__.constructor.apply(this, arguments);
};
Utils.subclass(TestDriver, Driver);
TestDriver.drivers = ['test'];
TestDriver.driver = function(opts) { return new TestDriver(opts); };