From b00a2a4cdf5f1adac083074764159691f6383032 Mon Sep 17 00:00:00 2001 From: Monder Date: Mon, 23 May 2016 20:25:44 +0300 Subject: [PATCH] TDD : new test for map inconsistencies --- tests/find-a-person.js | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/tests/find-a-person.js b/tests/find-a-person.js index 886735f..b9bba02 100644 --- a/tests/find-a-person.js +++ b/tests/find-a-person.js @@ -15,4 +15,13 @@ describe('Name match found (bool)', function() { var posts = map.name_matches("Or A.") expect(posts).to.be.eql(true); }); - }); \ No newline at end of file + }); + + + + 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); + }); + }); \ No newline at end of file