From: yomguy Date: Tue, 20 Mar 2012 11:46:37 +0000 (+0100) Subject: init X-Git-Tag: 0.2~111 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=6035186ce87e72f857f6e40ae4662b20fcc47ec8;p=teleforma.git init --- 6035186ce87e72f857f6e40ae4662b20fcc47ec8 diff --git a/telecampus/__init__.py b/telecampus/__init__.py new file mode 100755 index 00000000..e69de29b diff --git a/telecampus/models.py b/telecampus/models.py new file mode 100755 index 00000000..71a83623 --- /dev/null +++ b/telecampus/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/telecampus/tests.py b/telecampus/tests.py new file mode 100755 index 00000000..501deb77 --- /dev/null +++ b/telecampus/tests.py @@ -0,0 +1,16 @@ +""" +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) diff --git a/telecampus/views.py b/telecampus/views.py new file mode 100755 index 00000000..60f00ef0 --- /dev/null +++ b/telecampus/views.py @@ -0,0 +1 @@ +# Create your views here.