diff --git a/src/test/city.js b/src/test/city.js
index 761bcb0eeb21e55cd73d4aaac4dbd2db87c6cb90..ff8612fd9f27412d92a4e4626b7c777fb416efa1 100644
--- a/src/test/city.js
+++ b/src/test/city.js
@@ -70,4 +70,18 @@ describe('request cities', () => {
                 done();
             })
     })
+
+    it('should search for Curitiba', (done) => {
+        chai.request(server)
+            .get('/api/v1/city?search=name:curitiba')
+            .end((err, res) => {
+                res.should.have.status(200);
+                res.should.be.json;
+                res.body.should.have.property('result');
+                res.body.result.should.be.a('array');
+                res.body.result[0].should.have.property('pk_cod_ibge');
+                res.body.result[0].should.have.property('nome');
+                done();
+            });
+    });
 });
diff --git a/src/test/region.js b/src/test/region.js
index 12cf3d09fa82ce3b2f030d26d4997cf820aa2932..13e8316d99fb4c7d7f59cb83ba0e0c4f232089ba 100644
--- a/src/test/region.js
+++ b/src/test/region.js
@@ -53,4 +53,19 @@ describe('request regions', () => {
                 done();
             });
     });
+
+    it('shoul search for south region', (done) => {
+        chai.request(server)
+            .get('/api/v1/region?search=name:sul')
+            .end((err, res) => {
+                res.should.have.status(200);
+                res.should.be.json;
+                res.body.should.have.property('result');
+                res.body.result.should.be.a('array');
+                res.body.result.should.have.length(1);
+                res.body.result[0].should.have.property('pk_regiao_id');
+                res.body.result[0].should.have.property('nome');
+                done();
+            });
+    });
 });
diff --git a/src/test/state.js b/src/test/state.js
index d3794f98df89b6a2f410c93107daa7033b019792..c1b08f92c240163cd0cb84910256f9f1e8bee4a2 100644
--- a/src/test/state.js
+++ b/src/test/state.js
@@ -71,4 +71,20 @@ describe('request states', () => {
                 done();
             });
     });
+
+    it('should search for Paraná', (done) => {
+        chai.request(server)
+            .get('/api/v1/state?search=name:paran')
+            .end((err, res) => {
+                res.should.have.status(200);
+                res.should.be.json;
+                res.body.should.have.property('result');
+                res.body.result.should.be.a('array');
+                res.body.result.should.have.length(1);
+                res.body.result[0].should.have.property('pk_estado_id');
+                res.body.result[0].should.have.property('fk_regiao_id');
+                res.body.result[0].should.have.property('nome');
+                done();
+            });
+    });
 });