SOURCE CODE: Uize.Build.RunUnitTest

VIEW REFERENCE

/*______________
|       ______  |   U I Z E    J A V A S C R I P T    F R A M E W O R K
|     /      /  |   ---------------------------------------------------
|    /    O /   |    MODULE : Uize.Build.RunUnitTest Package
|   /    / /    |
|  /    / /  /| |    ONLINE : http://uize.com
| /____/ /__/_| | COPYRIGHT : (c)2012-2014 UIZE
|          /___ |   LICENSE : Available under MIT License or GNU General Public License
|_______________|             http://uize.com/license.html
*/

/* Module Meta Data
  type: Package
  importance: 1
  codeCompleteness: 100
  docCompleteness: 100
*/

/*?
  Introduction
    The =Uize.Build.RunUnitTest= module provides a method for testing a specified JavaScript module.

    *DEVELOPERS:* `Chris van Rensburg`

    Specify a Test Module
      When the value specified for the =testModule= parameter is a test module, then the test suite defined by the test module will be run.

      EXAMPLE
      ....................................................................
      node build.js Uize.Build.RunUnitTest testModule=Uize.Test.Uize.Class
      ....................................................................

    Specify a Module
      When the value specified for the =testModule= parameter is a non-test module, then the corresponding test module for the specified module will be run.

      EXAMPLE
      ..........................................................
      node build.js Uize.Build.RunUnitTest testModule=Uize.Class
      ..........................................................
*/

Uize.module ({
  name:'Uize.Build.RunUnitTest',
  required:'Uize.Build.Test',
  builder:function () {
    'use strict';

    return Uize.package ({
      perform:function (_params) {
        _params.module = _params.testModule;
        delete _params.testModule;
        Uize.Build.Test.perform (_params);
      }
    });
  }
});