2011-01-20 09:57:23 -05:00
|
|
|
"""
|
|
|
|
This file demonstrates two different styles of tests (one doctest and one
|
|
|
|
unittest). These will both pass when you run "manage.py test".
|
|
|
|
|
|
|
|
Replace these with more appropriate tests for your application.
|
|
|
|
"""
|
|
|
|
|
|
|
|
from django.test import TestCase
|
|
|
|
|
2024-04-24 09:43:56 -04:00
|
|
|
|
2011-01-20 09:57:23 -05:00
|
|
|
class SimpleTest(TestCase):
|
|
|
|
def test_basic_addition(self):
|
|
|
|
"""
|
|
|
|
Tests that 1 + 1 always equals 2.
|
|
|
|
"""
|
2020-06-17 00:36:01 -04:00
|
|
|
self.assertEqual(1 + 1, 2)
|
2011-01-20 09:57:23 -05:00
|
|
|
|
2024-04-24 09:43:56 -04:00
|
|
|
|
|
|
|
__test__ = {
|
|
|
|
"doctest": """
|
2011-01-20 09:57:23 -05:00
|
|
|
Another way to test that 1 + 1 is equal to 2.
|
|
|
|
|
|
|
|
>>> 1 + 1 == 2
|
|
|
|
True
|
2024-04-24 09:43:56 -04:00
|
|
|
"""
|
|
|
|
}
|