~widelands-dev/widelands-website/trunk

« back to all changes in this revision

Viewing changes to images/tests.py

  • Committer: Holger Rapp
  • Date: 2009-03-01 20:47:48 UTC
  • Revision ID: sirver@kallisto.local-20090301204748-h3ouqkp8zhv10ydq
First (working) commit of wlimages app, the app that will handle image uploading and managing. Uploading works now; images can only be uploaded once (with the same filename). Much stil missing. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
"""
2
 
This file demonstrates two different styles of tests (one doctest and one
3
 
unittest). These will both pass when you run "manage.py test".
4
 
 
5
 
Replace these with more appropriate tests for your application.
6
 
"""
7
 
 
8
 
from django.test import TestCase
9
 
 
10
 
class SimpleTest(TestCase):
11
 
    def test_basic_addition(self):
12
 
        """
13
 
        Tests that 1 + 1 always equals 2.
14
 
        """
15
 
        self.failUnlessEqual(1 + 1, 2)
16
 
 
17
 
__test__ = {"doctest": """
18
 
Another way to test that 1 + 1 is equal to 2.
19
 
 
20
 
>>> 1 + 1 == 2
21
 
True
22
 
"""}
23