api_call('reverse')
@step(u'looking up place ([NRW]?\d+)')
-def api_setup_details(step, obj):
+def api_setup_details_reverse(step, obj):
if obj[0] in ('N', 'R', 'W'):
# an osm id
world.params['osm_type'] = obj[0]
else:
world.params['place_id'] = obj
api_call('details')
+
+@step(u'sending an API call (\w+)')
+def api_general_call(step, call):
+ api_call(call)