Skip to content

Commit

Permalink
TDD : new test for map inconsistencies
Browse files Browse the repository at this point in the history
  • Loading branch information
monder93 committed May 23, 2016
1 parent 269fd70 commit b00a2a4
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion tests/find-a-person.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,13 @@ describe('Name match found (bool)', function() {
var posts = map.name_matches("Or A.")
expect(posts).to.be.eql(true);
});
});
});



describe('Map inconsistencies test #1', function() {
it('heck if there are map inconsistencies, e.g., the same name with different locations.', function() {
var posts = map.map_inconsist("Or A.")
expect(posts).to.be.eql(true);
});
});

0 comments on commit b00a2a4

Please sign in to comment.