Additional minor improvements

This commit is contained in:
Samer Albahra
2015-08-11 15:28:41 -05:00
parent 7425a65038
commit 2b960f6f44
2 changed files with 11 additions and 6 deletions

View File

@@ -42,6 +42,10 @@ new CronJob( "0 0 0 * * *", function() {
// Find all records in the weather cache
Cache.find( {}, function( err, records ) {
if ( err ) {
return;
}
// Cycle through each record
records.forEach( function( record ) {

View File

@@ -57,12 +57,13 @@ describe( "Weather API", function() {
function apiTest( opt ) {
var opt = extend( {}, {
method: 0,
key: "",
format: "json"
}, opt ),
url = "/" + opt.method + "?loc=" + opt.loc + "&key=" + opt.key + "&format=" + opt.format;
opt = extend( {}, {
method: 0,
key: "",
format: "json"
}, opt );
var url = "/" + opt.method + "?loc=" + opt.loc + "&key=" + opt.key + "&format=" + opt.format;
setupMocks( opt.loc );