1
0
mirror of https://github.com/bspeice/Melodia synced 2024-09-27 21:51:33 -04:00
Melodia/web/tests.py
Bradlee Speice bcfbd7bc60 Initial web app commit
Contains app-specific URL handling, and initial static resources
	(bootstrap, jquery 1.9, jquery-ui 1.10 included)
2013-01-18 23:17:55 -05: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)