From 49f9f1166d32a1b00cafb159743c227b87fbb201 Mon Sep 17 00:00:00 2001 From: davin baragiotta Date: Tue, 22 Mar 2011 15:37:17 -0400 Subject: [PATCH] =?utf8?q?app=20rh=20cr=C3=A9=C3=A9e?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- project/rh/models.py | 3 +++ project/rh/tests.py | 23 +++++++++++++++++++++++ project/rh/views.py | 1 + project/settings.py | 1 + 4 files changed, 28 insertions(+) create mode 100644 project/rh/__init__.py create mode 100644 project/rh/models.py create mode 100644 project/rh/tests.py create mode 100644 project/rh/views.py diff --git a/project/rh/__init__.py b/project/rh/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/project/rh/models.py b/project/rh/models.py new file mode 100644 index 0000000..71a8362 --- /dev/null +++ b/project/rh/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/project/rh/tests.py b/project/rh/tests.py new file mode 100644 index 0000000..2247054 --- /dev/null +++ b/project/rh/tests.py @@ -0,0 +1,23 @@ +""" +This file demonstrates two different styles of tests (one doctest and one +unittest). These will both pass when you run "manage.py test". + +Replace these 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.failUnlessEqual(1 + 1, 2) + +__test__ = {"doctest": """ +Another way to test that 1 + 1 is equal to 2. + +>>> 1 + 1 == 2 +True +"""} + diff --git a/project/rh/views.py b/project/rh/views.py new file mode 100644 index 0000000..60f00ef --- /dev/null +++ b/project/rh/views.py @@ -0,0 +1 @@ +# Create your views here. diff --git a/project/settings.py b/project/settings.py index 44e499f..fdbd164 100644 --- a/project/settings.py +++ b/project/settings.py @@ -57,6 +57,7 @@ INSTALLED_APPS = ( 'django.contrib.admin', 'south', 'project.rh_v1', + 'project.rh', 'project.dae', ) -- 1.7.10.4