default_options: function(test) {
    var script = grunt.file.read('tmp/default_options');

    // the value "lbservices" is the --module-name default
    test.equal(parse.moduleName(script), 'lbServices');
    // the value "/rest-api-root" is hard-coded in fixtures/app.js
    test.equal(parse.baseUrl(script), '/rest-api-root');
    test.done();
  },
 custom_options: function(test) {
   var script = grunt.file.read('tmp/custom_options');
   test.equal(parse.moduleName(script), 'customServices');
   test.equal(parse.baseUrl(script), 'http://custom/api');
   test.done();
 }