1
0
mirror of https://github.com/bspeice/M28_App synced 2024-09-28 14:11:34 -04:00
M28_App/M28_django/M28/tests.py
Bradlee Speice 0576552ec6 Initial upload for the M28 Charlotte App
Contains initial PhoneGap code, and Django template system
Template system is set up to render the templates out so PhoneGap can
use them, rather than having to re-code everything by hand.
2013-03-28 09:53:13 -04:00

17 lines
383 B
Python

"""
This file demonstrates writing tests using the unittest module. These will pass
when you run "manage.py test".
Replace this with more appropriate tests for your application.
"""
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)