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

  1. django-admin startproject mysite
  2. cd mysite
  3. python manage.py runserver
  4. 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/