/*-----------------------------------------------------------------------------
 * @package:    node-kit migration
 * @author:     Richard B Winters
 * @copyright:  2015-2019 Massively Modified, Inc.
 * @license:    Apache-2.0
 * @version:    0.1.2
 *---------------------------------------------------------------------------*/
'use strict'

// INCLUDES
import * as assert from 'assert';
import { Migration } from '../src/migration';


// DEFINES
//let migrator = new Migration();


// SANITY CHECK - Makes sure our tests are working proerly
describe
(
    'sanity', function()
    {
        describe
        (
            'sanity()',
            function()
            {
                it
                (
                    'Should return true.',
                    function()
                    {
                        assert.equal( [1,2,3,4].indexOf(4), 3 );
                    }
                );
            }
        );
    }
);