Code coverage report for lib/index.js

Statements: 100% (3 / 3)      Branches: 100% (0 / 0)      Functions: 100% (0 / 0)      Lines: 100% (3 / 3)      Ignored: none     

All files » lib/ » index.js
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 30                                          1 1           1  
 
/*jslint browser:true, node:true*/
 
/**
 * FruitMachine Singleton
 *
 * Renders layouts/modules from a basic layout definition.
 * If views require custom interactions devs can extend
 * the basic functionality.
 *
 * @version 0.6.0
 * @copyright The Financial Times Limited [All Rights Reserved]
 * @author Wilson Page <wilson.page@ft.com>
 */
 
'use strict';
 
/**
 * Module Dependencies
 */
 
var fruitMachine = require('./fruitmachine');
var Model = require('model');
 
/**
 * Exports
 */
 
module.exports = fruitMachine({ Model: Model });