cylon/lib/test/test-adaptor.js

24 lines
506 B
JavaScript
Raw Normal View History

2014-02-27 22:44:53 +08:00
/*
2015-04-15 09:16:03 +08:00
* Cylon.js - Test Adaptor
2014-02-27 22:44:53 +08:00
* cylonjs.com
*
2015-01-08 04:58:50 +08:00
* Copyright (c) 2013-2015 The Hybrid Group
2014-02-27 22:44:53 +08:00
* Licensed under the Apache 2.0 license.
*/
"use strict";
2014-12-16 03:15:29 +08:00
var Adaptor = require("../adaptor"),
Utils = require("../utils");
2014-05-07 09:18:20 +08:00
var TestAdaptor;
2014-02-27 22:44:53 +08:00
module.exports = TestAdaptor = function TestAdaptor() {
TestAdaptor.__super__.constructor.apply(this, arguments);
};
2014-02-27 22:44:53 +08:00
Utils.subclass(TestAdaptor, Adaptor);
2014-02-27 22:44:53 +08:00
2014-12-16 03:15:29 +08:00
TestAdaptor.adaptors = ["test"];
TestAdaptor.adaptor = function(opts) { return new TestAdaptor(opts); };