Skip to content

Instantly share code, notes, and snippets.

@tobie
Forked from DavidBruant/original.js
Last active December 12, 2015 04:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tobie/4713821 to your computer and use it in GitHub Desktop.
Save tobie/4713821 to your computer and use it in GitHub Desktop.
function load(fixtures, onComplete) {
async.parallel(fixtures.map(function(fixture) {
return function(cb) {
store(fixture, function(err, result) {
cb(err, result);
});
};
}), onComplete);
}
describe("moods tests", function() {
var moods = [
"2013-02-01:n1k0:sunny"
, "2013-02-02:n1k0:cloudy"
, "2013-02-03:n1k0:stormy"
, "2013-02-04:n1k0:rainy"
// … we could add many more
];
it ("should do something useful with moods", function(done) {
load(moods, function(err, storedMoods) {
done(err || undefined); // to make a fair comparison
});
});
});
function load(fixtures) {
return Q.all(fixtures.map(store));
}
describe("moods tests", function() {
var moods = [
"2013-02-01:n1k0:sunny"
, "2013-02-02:n1k0:cloudy"
, "2013-02-03:n1k0:stormy"
, "2013-02-04:n1k0:rainy"
// … we could add many more
];
// a promise-freindly test framework would expect promises to be returned
it ("should do something useful with moods", function() {
return load(moods);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment