Additional creation checks

This commit is contained in:
Matthew Dillon 2015-11-05 10:32:28 -07:00
parent 35c53fc79b
commit 6924dba26e
2 changed files with 2 additions and 0 deletions

View file

@ -66,6 +66,7 @@ test('creating /characteristics/new', function(assert) {
andThen(function() { andThen(function() {
assert.equal(find(".flakes-information-box > legend").text().trim(), 'New Characteristic Name'); assert.equal(find(".flakes-information-box > legend").text().trim(), 'New Characteristic Name');
assert.equal(server.db.characteristics.length, 1);
}); });
}); });
}); });

View file

@ -65,6 +65,7 @@ test('creating /species/new', function(assert) {
andThen(function() { andThen(function() {
assert.equal(find(".flakes-information-box > legend > em").text().trim(), 'New Species Name'); assert.equal(find(".flakes-information-box > legend > em").text().trim(), 'New Species Name');
assert.equal(server.db.species.length, 1);
}); });
}); });
}); });