/**
* GPII PackageKit Device Reporter Tests
*
* Copyright 2014 Emergya
*
* Licensed under the New BSD license. You may not use this file except in
* compliance with this License.
*
* You may obtain a copy of the License at
* https://github.com/gpii/universal/LICENSE.txt
*/
"use strict";
var fluid = require("universal"),
kettle = fluid.require("kettle");
kettle.loadTestingSupport();
var testIncludes = [
"./packageKitModuleTests.js",
"./packageKitDeviceReporterTests.js"
];
var tests = [];
fluid.each(testIncludes, function (path) {
tests = tests.concat(fluid.require(path, require));
});
|