2012-04-25 22:29:19 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
2012-02-03 20:49:16 +01:00
|
|
|
"""
|
2012-04-25 22:29:19 +02:00
|
|
|
openslides.projector.tests
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2012-02-03 20:49:16 +01:00
|
|
|
|
2012-04-25 22:29:19 +02:00
|
|
|
Unit tests for the projector app.
|
|
|
|
|
|
|
|
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
|
|
|
|
:license: GNU GPL, see LICENSE for more details.
|
2012-02-03 20:49:16 +01:00
|
|
|
"""
|
|
|
|
|
|
|
|
from django.test import TestCase
|
|
|
|
|
|
|
|
|
|
|
|
class SimpleTest(TestCase):
|
|
|
|
def test_basic_addition(self):
|
|
|
|
"""
|
|
|
|
Tests that 1 + 1 always equals 2.
|
|
|
|
"""
|
|
|
|
self.assertEqual(1 + 1, 2)
|