pancakes-syrup
Version:
Deployment build tasks for pancakes projects
18 lines (15 loc) • 458 B
JavaScript
/**
* Author: Jeff Whelpley
* Date: 1/15/15
*
* This test is dumb for now, but just to have something here as placeholder
*/
var name = 'lib/pancakes.syrup';
var taste = require('taste');
var target = taste.target(name);
describe('UNIT ' + name, function () {
it('should be an empty object', function () {
taste.should.exist(target.rootDir);
target.rootDir.should.deep.equal(__dirname.replace('/test/unit', ''));
});
});