Create API to run test cases
[yardstick.git] / api / urls.py
1 from api import views
2 from api.utils.common import Url
3
4
5 urlpatterns = [
6     Url('/yardstick/test/action', views.Test, 'test')
7 ]