Exemplo n.º 1
0
    def test_catalog_search_point(self):
        c = Catalog()
        lat = 40.0149856
        lng = -105.2705456
        results = c.search_point(lat, lng)

        self.assertEqual(len(results), 499)
Exemplo n.º 2
0
def test_catalog_search_point():
    c = Catalog(gbdx)
    lat = 40.0149856
    lng = -105.2705456
    results = c.search_point(lat, lng)

    assert results['stats']['totalRecords'] == 310
Exemplo n.º 3
0
    def test_catalog_search_point(self):
        c = Catalog()
        lat = 40.0149856
        lng = -105.2705456
        results = c.search_point(lat, lng)

        self.assertEqual(len(results),499)
Exemplo n.º 4
0
def test_catalog_search_point():
	c = Catalog(gbdx)
	lat = 40.0149856
	lng = -105.2705456
	results = c.search_point(lat,lng)

	assert results['stats']['totalRecords'] == 310