Commit 58c8c5ee authored by KY-2187's avatar KY-2187

created html files

parent 7be55e2f
<html>
<head><title>Ingredients - Create</title></head>
</html>
\ No newline at end of file
<html>
<head><title>Ingredients - Detail</title></head>
</html>
\ No newline at end of file
<html>
<head><title>Ingredients - List</title></head>
</html>
\ No newline at end of file
<html>
<head><title>Ingredients - Update</title></head>
</html>
\ No newline at end of file
<html>
<head><title>Orders - Create</title></head>
</html>
\ No newline at end of file
<html>
<head><title>Orders - Detail</title></head>
</html>
\ No newline at end of file
<html>
<head><title>Orders - List</title></head>
</html>
\ No newline at end of file
<html>
<head><title>Orders - Update</title></head>
</html>
\ No newline at end of file
<html>
<head><title>Recipes - Create</title></head>
</html>
\ No newline at end of file
<html>
<head><title>Recipes - Detail</title></head>
</html>
\ No newline at end of file
<html>
<head><title>Recipes - List</title></head>
</html>
\ No newline at end of file
<html>
<head><title>Recipes - Update</title></head>
</html>
\ No newline at end of file
import unittest
from selenium import webdriver
class NewVisitorTest(unittest.TestCase):
def setUp(self):
self.browser = webdriver.Firefox()
def tearDown(self):
self.browser.quit()
def somethingsomething(self):
if __name__ == '__main__':
unittest.main(warnings = 'ignore')
\ No newline at end of file
...@@ -37,6 +37,7 @@ INSTALLED_APPS = [ ...@@ -37,6 +37,7 @@ INSTALLED_APPS = [
'django.contrib.sessions', 'django.contrib.sessions',
'django.contrib.messages', 'django.contrib.messages',
'django.contrib.staticfiles', 'django.contrib.staticfiles',
'froyo',
] ]
MIDDLEWARE = [ MIDDLEWARE = [
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment