29 lines
562 B
Python
29 lines
562 B
Python
|
#!/usr/bin/env python
|
||
|
# -*- coding: utf-8 -*-
|
||
|
"""
|
||
|
openslides.system.tests
|
||
|
~~~~~~~~~~~~~~~~~~~~~~~
|
||
|
|
||
|
Unit tests for the system app.
|
||
|
|
||
|
:copyright: 2011 by the OpenSlides team, see AUTHORS.
|
||
|
:license: GNU GPL, see LICENSE for more details.
|
||
|
"""
|
||
|
|
||
|
from django.test import TestCase
|
||
|
|
||
|
class SimpleTest(TestCase):
|
||
|
def test_basic_addition(self):
|
||
|
"""
|
||
|
Tests that 1 + 1 always equals 2.
|
||
|
"""
|
||
|
self.failUnlessEqual(1 + 1, 2)
|
||
|
|
||
|
__test__ = {"doctest": """
|
||
|
Another way to test that 1 + 1 is equal to 2.
|
||
|
|
||
|
>>> 1 + 1 == 2
|
||
|
True
|
||
|
"""}
|
||
|
|