all files / sync/gpii/node_modules/packagekit/test/ all-tests.js

100% Statements 6/6
100% Branches 0/0
100% Functions 1/1
100% Lines 6/6
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29                                             
/**
 * 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));
});