Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
thegoodplace-Laguesma
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Cian Laguesma
thegoodplace-Laguesma
Commits
67704e4d
Commit
67704e4d
authored
Mar 17, 2020
by
cianlaguesma
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added more tests
parent
8c6cbda8
Changes
14
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
238 additions
and
25 deletions
+238
-25
index.html
froyo/templates/index.html
+17
-0
ingredients_create_form.html
froyo/templates/ingredients_create_form.html
+1
-0
ingredients_detail.html
froyo/templates/ingredients_detail.html
+1
-0
ingredients_list.html
froyo/templates/ingredients_list.html
+1
-0
ingredients_update_form.html
froyo/templates/ingredients_update_form.html
+1
-0
orders_create_form.html
froyo/templates/orders_create_form.html
+1
-0
orders_detail.html
froyo/templates/orders_detail.html
+1
-0
orders_list.html
froyo/templates/orders_list.html
+1
-0
orders_update_form.html
froyo/templates/orders_update_form.html
+1
-0
recipes_create_form.html
froyo/templates/recipes_create_form.html
+1
-0
recipes_detail.html
froyo/templates/recipes_detail.html
+1
-0
recipes_list.html
froyo/templates/recipes_list.html
+1
-0
recipes_update_form.html
froyo/templates/recipes_update_form.html
+1
-0
functional_tests.py
functional_tests.py
+209
-25
No files found.
froyo/templates/index.html
View file @
67704e4d
...
...
@@ -3,4 +3,21 @@
<title>
The Good Place FroYo Shop
</title>
<h1
id=
"header_home"
>
The Good Place Froyo Shop
</h1>
</head>
<body>
<ul>
<li><a
href=
"http://localhost:8000/ingredients/create_form"
id=
"ingredients_create_form"
>
Create form for Ingredients
</a></li>
<li><a
href=
"http://localhost:8000/ingredients/update_form"
id=
"ingredients_update_form"
>
Update form for Ingredients
</a></li>
<li><a
href=
"http://localhost:8000/ingredients/list"
id=
"ingredients_list"
>
See List for all Ingredients
</a></li>
<li><a
href=
"http://localhost:8000/ingredients/detail"
id=
"ingredients_detail"
>
See Details for an Ingredient
</a></li>
<li><a
href=
"http://localhost:8000/recipes/create_form"
id=
"recipe_create_form"
>
Create form for Recipe
</a></li>
<li><a
href=
"http://localhost:8000/recipes/update_form"
id=
"recipe_update_form"
>
Update form for Recipe
</a></li>
<li><a
href=
"http://localhost:8000/recipes/list"
id=
"recipe_list"
>
See List for all Recipes
</a></li>
<li><a
href=
"http://localhost:8000/recipes/detail"
id=
"recipe_detail"
>
See Details for a Recipe
</a></li>
<li><a
href=
"http://localhost:8000/orders/create_form"
id=
"orders_create_form"
>
Create form for Orders
</a></li>
<li><a
href=
"http://localhost:8000/orders/update_form"
id=
"orders_update_form"
>
Update form for Orders
</a></li>
<li><a
href=
"http://localhost:8000/orders/list"
id=
"orders_list"
>
See List for all Orders
</a></li>
<li><a
href=
"http://localhost:8000/orders/detail"
id=
"orders_detail"
>
See Details for an Order
</a></li>
</ul>
</body>
</html>
froyo/templates/ingredients_create_form.html
View file @
67704e4d
...
...
@@ -2,4 +2,5 @@
<head>
<h1
id=
"ingredients_create_form_header"
>
Ingredients - Create Form
</h1>
</head>
<body><a
href=
"http://localhost:8000/index"
id=
"home"
>
Return to Home Page
</a></body>
</html>
froyo/templates/ingredients_detail.html
View file @
67704e4d
...
...
@@ -2,4 +2,5 @@
<head>
<h1
id=
"ingredients_detail_header"
>
Ingredients - Detail
</h1>
</head>
<body><a
href=
"http://localhost:8000/index"
id=
"home"
>
Return to Home Page
</a></body>
</html>
froyo/templates/ingredients_list.html
View file @
67704e4d
...
...
@@ -2,4 +2,5 @@
<head>
<h1
id=
"ingredients_list_header"
>
Ingredients - List
</h1>
</head>
<body><a
href=
"http://localhost:8000/index"
id=
"home"
>
Return to Home Page
</a></body>
</html>
froyo/templates/ingredients_update_form.html
View file @
67704e4d
...
...
@@ -2,4 +2,5 @@
<head>
<h1
id=
"ingredients_update_form_header"
>
Ingredients - Update Form
</h1>
</head>
<body><a
href=
"http://localhost:8000/index"
id=
"home"
>
Return to Home Page
</a></body>
</html>
froyo/templates/orders_create_form.html
View file @
67704e4d
...
...
@@ -2,4 +2,5 @@
<head>
<h1
id=
"orders_create_form_header"
>
Orders - Create Form
</h1>
</head>
<body><a
href=
"http://localhost:8000/index"
id=
"home"
>
Return to Home Page
</a></body>
</html>
froyo/templates/orders_detail.html
View file @
67704e4d
...
...
@@ -3,4 +3,5 @@
<h1
id=
"orders_detail_header"
>
Orders - Detail
</h1>
</head>
<body><a
href=
"http://localhost:8000/index"
id=
"home"
>
Return to Home Page
</a></body>
</html>
froyo/templates/orders_list.html
View file @
67704e4d
...
...
@@ -3,4 +3,5 @@
<h1
id=
"orders_list_header"
>
Orders - List
</h1>
</head>
<body><a
href=
"http://localhost:8000/index"
id=
"home"
>
Return to Home Page
</a></body>
</html>
froyo/templates/orders_update_form.html
View file @
67704e4d
...
...
@@ -3,4 +3,5 @@
<h1
id=
"orders_update_form_header"
>
Orders - Update Form
</h1>
</head>
<body><a
href=
"http://localhost:8000/index"
id=
"home"
>
Return to Home Page
</a></body>
</html>
froyo/templates/recipes_create_form.html
View file @
67704e4d
...
...
@@ -3,4 +3,5 @@
<h1
id=
"recipes_create_form_header"
>
Recipes - Create Form
</h1>
</head>
<body><a
href=
"http://localhost:8000/index"
id=
"home"
>
Return to Home Page
</a></body>
</html>
froyo/templates/recipes_detail.html
View file @
67704e4d
...
...
@@ -3,4 +3,5 @@
<h1
id=
"recipes_detail_header"
>
Recipes - Detail
</h1>
</head>
<body><a
href=
"http://localhost:8000/index"
id=
"home"
>
Return to Home Page
</a></body>
</html>
froyo/templates/recipes_list.html
View file @
67704e4d
...
...
@@ -3,4 +3,5 @@
<h1
id=
"recipes_list_header"
>
Recipes - List
</h1>
</head>
<body><a
href=
"http://localhost:8000/index"
id=
"home"
>
Return to Home Page
</a></body>
</html>
froyo/templates/recipes_update_form.html
View file @
67704e4d
...
...
@@ -3,4 +3,5 @@
<h1
id=
"recipes_update_form_header"
>
Recipes - Update Form
</h1>
</head>
<body><a
href=
"http://localhost:8000/index"
id=
"home"
>
Return to Home Page
</a></body>
</html>
functional_tests.py
View file @
67704e4d
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment