nit: Added link to `CONTRIBUTING.md` from the README
[nit.git] / lib / popcorn / tests / res / test_example_angular.res
1
2 [Client] curl -s localhost:*****/counter
3 {"label":"Visitors","value":0}
4 [Client] curl -s localhost:*****/counter -X POST
5 {"label":"Visitors","value":1}
6 [Client] curl -s localhost:*****/counter
7 {"label":"Visitors","value":1}
8 [Client] curl -s localhost:*****/not_found
9 <!DOCTYPE html>
10 <html lang='en' ng-app='ng-example'>
11         <head>
12                 <base href='/'>
13                 <title>ng-example</title>
14         </head>
15         <body>
16                 <div ng-view></div>
17
18                 <script src='https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.5.5/angular.min.js'></script>
19                 <script src='https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.5.5/angular-route.js'></script>
20                 <script src='/javascripts/ng-example.js'></script>
21         </body>
22 </html>