0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-13 10:52:46 +00:00

Starting on the brew card

This commit is contained in:
Scott Tolksdorf
2017-05-29 23:39:59 -04:00
parent fa203047da
commit 380bbd661f
17 changed files with 137 additions and 77 deletions

View File

@@ -3,7 +3,7 @@ const _ = require('lodash');
const DB = require('db.js');
const BrewData = require('brew.data.js');
const BrewGen = require('./brew.gen.js');
const SampleBrews = require('./sample_brews.js');
//const Error = require('error.js');
@@ -12,7 +12,7 @@ describe('Brew Search', () => {
before('Connect DB', DB.connect);
before('Clear DB', BrewData.removeAll);
before('Populate brews', ()=>{
return BrewGen.populateDB(BrewGen.static());
return SampleBrews.populateDB(SampleBrews.static());
});
@@ -28,7 +28,7 @@ describe('Brew Search', () => {
it('should be able to search for all brews', ()=>{
return BrewData.search()
.then((result) => {
const brewCount = _.size(BrewGen.static());
const brewCount = _.size(SampleBrews.static());
result.total.should.be.equal(brewCount);
result.brews.length.should.be.equal(brewCount);
})
@@ -41,7 +41,7 @@ describe('Brew Search', () => {
limit : 2
})
.then((result) => {
result.total.should.be.equal(_.size(BrewGen.static()));
result.total.should.be.equal(_.size(SampleBrews.static()));
result.brews.length.should.be.equal(2);
})
});