From Fedora Project Wiki
(Django smoketest) |
No edit summary |
||
Line 13: | Line 13: | ||
}} | }} | ||
Taken from: http://docs.djangoproject.com/en/dev/intro/tutorial01/ | |||
[[Category:Django_Test_Cases]] |
Revision as of 23:12, 10 September 2010
Description
Smoketest the Django package
Setup
yum install Django
How to test
- django-admin startproject mysite
- cd mysite
- python manage.py runserver
- curl http://localhost:8000/
Expected Results
Should get a sample web page coming from the Django project that you just created.
Taken from: http://docs.djangoproject.com/en/dev/intro/tutorial01/