From 6db146f6b49a1a5310cf1be04bace51090ec5fba Mon Sep 17 00:00:00 2001 From: Piotr Mitros Date: Fri, 27 Jul 2012 10:19:51 -0400 Subject: [PATCH] Missing files --- lms/djangoapps/dashboard/__init__.py | 0 lms/djangoapps/dashboard/models.py | 3 +++ lms/djangoapps/dashboard/tests.py | 16 ++++++++++++++++ 3 files changed, 19 insertions(+) create mode 100644 lms/djangoapps/dashboard/__init__.py create mode 100644 lms/djangoapps/dashboard/models.py create mode 100644 lms/djangoapps/dashboard/tests.py diff --git a/lms/djangoapps/dashboard/__init__.py b/lms/djangoapps/dashboard/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/lms/djangoapps/dashboard/models.py b/lms/djangoapps/dashboard/models.py new file mode 100644 index 0000000000..71a8362390 --- /dev/null +++ b/lms/djangoapps/dashboard/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/lms/djangoapps/dashboard/tests.py b/lms/djangoapps/dashboard/tests.py new file mode 100644 index 0000000000..501deb776c --- /dev/null +++ b/lms/djangoapps/dashboard/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)