<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -9,11 +9,10 @@ Introduction
 ------------
 
 This script is fairly basic. Here is a quick example of how to use it::
-    app_test_runner.py [path-to-app]
+    django_test_runner.py [path-to-app]
 
 You must have Django on the PYTHONPATH prior to running this script. This
 script basically will bootstrap a Django environment for you.
 
 By default this script with use SQLite and an in-memory database. If you
 are using Python 2.5 it will just work out of the box for you.
-</diff>
      <filename>docs/source/test_runner.rst</filename>
    </modified>
    <modified>
      <diff>@@ -3,25 +3,27 @@
 Many thanks to Brian Rosner &lt;oebfare.com&gt; for letting me include
 this code in Test Utils.
 &quot;&quot;&quot;
- 
+
 import os
 import sys
- 
+
 from optparse import OptionParser
- 
+
 from django.conf import settings
 from django.core.management import call_command
- 
+
 def main():
     &quot;&quot;&quot;
 The entry point for the script. This script is fairly basic. Here is a
 quick example of how to use it::
-app_test_runner.py [path-to-app]
+
+    django_test_runner.py [path-to-app]
+
 You must have Django on the PYTHONPATH prior to running this script. This
 script basically will bootstrap a Django environment for you.
+
 By default this script with use SQLite and an in-memory database. If you
 are using Python 2.5 it will just work out of the box for you.
-TODO: show more options here.
 &quot;&quot;&quot;
     parser = OptionParser()
     parser.add_option(&quot;--DATABASE_ENGINE&quot;, dest=&quot;DATABASE_ENGINE&quot;, default=&quot;sqlite3&quot;)
@@ -29,9 +31,9 @@ TODO: show more options here.
     parser.add_option(&quot;--DATABASE_USER&quot;, dest=&quot;DATABASE_USER&quot;, default=&quot;&quot;)
     parser.add_option(&quot;--DATABASE_PASSWORD&quot;, dest=&quot;DATABASE_PASSWORD&quot;, default=&quot;&quot;)
     parser.add_option(&quot;--SITE_ID&quot;, dest=&quot;SITE_ID&quot;, type=&quot;int&quot;, default=1)
-    
+
     options, args = parser.parse_args()
-    
+
     # check for app in args
     try:
         app_path = args[0]
@@ -43,7 +45,7 @@ TODO: show more options here.
             app_path = app_path[:-1]
         parent_dir, app_name = os.path.split(app_path)
         sys.path.insert(0, parent_dir)
-    
+
     settings.configure(**{
         &quot;DATABASE_ENGINE&quot;: options.DATABASE_ENGINE,
         &quot;DATABASE_NAME&quot;: options.DATABASE_NAME,
@@ -72,6 +74,6 @@ TODO: show more options here.
         ),
     })
     call_command(&quot;test&quot;)
- 
+
 if __name__ == &quot;__main__&quot;:
     main()</diff>
      <filename>test_utils/bin/django_test_runner.py</filename>
    </modified>
    <modified>
      <diff>@@ -0,0 +1 @@
+#This is here so that Django thinks we are a model so we can test it.</diff>
      <filename>test_utils/models.py</filename>
    </modified>
    <modified>
      <diff>@@ -12,8 +12,6 @@ DEFAULT_TAGS = ['autoescape' , 'block' , 'comment' , 'cycle' , 'debug' ,
 
 tag_re = re.compile('({% (.*?) %})')
 
-#output_ttag_tests(user_context, response.template[0])
-
 ### Template Tag Maker stuff
 
 class TemplateParser(object):</diff>
      <filename>test_utils/templatetags/__init__.py</filename>
    </modified>
    <modified>
      <diff>@@ -18,6 +18,7 @@ specify the target url as arguments to Django's ``reverse()``.
 
 Usage:
 
+    from test_utils.utils import twill_runner as twill
     twill.setup()
     try:
         twill.go('/')                     # --&gt; Django WSGI</diff>
      <filename>test_utils/utils/twill_runner.py</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>ca3fdf186f746c70deac73de0dbe3c706e58b1d2</id>
    </parent>
  </parents>
  <author>
    <name>Eric Holscher</name>
    <email>eric@ericholscher.com</email>
  </author>
  <url>http://github.com/ericholscher/django-test-utils/commit/5c37c66cf7a134091f43164a2401d473b5e92ca0</url>
  <id>5c37c66cf7a134091f43164a2401d473b5e92ca0</id>
  <committed-date>2009-04-12T19:28:53-07:00</committed-date>
  <authored-date>2009-04-12T19:28:53-07:00</authored-date>
  <message>Small doc and comment cleanups</message>
  <tree>9db4badb38ac912db76840d8bdc3cee2b7603083</tree>
  <committer>
    <name>Eric Holscher</name>
    <email>eric@ericholscher.com</email>
  </committer>
</commit>
