diff options
| author | Yuval Adam <yuv.adm@gmail.com> | 2011-03-19 20:31:42 +0200 |
|---|---|---|
| committer | Yuval Adam <yuv.adm@gmail.com> | 2011-03-19 20:31:42 +0200 |
| commit | 8b112c71e15e6de0739e19ba6e11da43d751c5f8 (patch) | |
| tree | 494b62579c1923315b52bcfeef681c9a19801f77 | |
| parent | 546bf6061665ccc4cf5cccf047f173cd3e960e20 (diff) | |
added fb app
| -rw-r--r-- | fb/__init__.py | 0 | ||||
| -rw-r--r-- | fb/models.py | 3 | ||||
| -rw-r--r-- | fb/tests.py | 23 | ||||
| -rw-r--r-- | fb/views.py | 1 |
4 files changed, 27 insertions, 0 deletions
diff --git a/fb/__init__.py b/fb/__init__.py new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/fb/__init__.py diff --git a/fb/models.py b/fb/models.py new file mode 100644 index 0000000..71a8362 --- /dev/null +++ b/fb/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/fb/tests.py b/fb/tests.py new file mode 100644 index 0000000..2247054 --- /dev/null +++ b/fb/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/fb/views.py b/fb/views.py new file mode 100644 index 0000000..60f00ef --- /dev/null +++ b/fb/views.py @@ -0,0 +1 @@ +# Create your views here. |
