UNPKG

slush-generator

Version:

A slush generator for creating slush generators

22 lines (18 loc) 440 B
/* * slush-generator * https://github.com/chrisenytc/slush-generator * * Copyright (c) 2015, Christopher EnyTC * Licensed under the MIT license. */ 'use strict'; var chai = require('chai'); chai.expect(); chai.should(); describe('slush-generator module', function() { describe('#test', function() { it('should return a hello', function() { 'Hello Slush'.should.equal('Hello Slush'); }); }); });