Code coverage report for app/models/populationModel.js

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

All files » app/models/ » populationModel.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 31 32 33 34                1                               1                  
/*global require, define */
/*jslint nomen: true, todo: true */
 
/**
 * @module populationModel
 */
 
 
define(['models/defaultModel'],
 
    /**
     * @name module:populationModel
     * @description Population model
     * @see module:defaultModel
     * @class Backbone.Model
     * @extends module:defaultModel
     * @constructor
     * @requires module:defaultModel {Function}
     * @returns {Function} Backbone.Model constructor
     */
 
    function (defaultModel) {
        "use strict";
 
        return defaultModel.extend({
 
        /**
        * @property module:populationModel#url {String} API rel path
        * @type {string}
        */
            path: "api/stats/population"
        });
 
    });