From 7992b247af56e9815bddc29504cc17fc1a7f498f Mon Sep 17 00:00:00 2001 From: Davin Baragiotta Date: Thu, 30 Aug 2012 17:14:20 -0400 Subject: [PATCH] carto_1_1 startapp annuaire --- ateliers/django/carto_1_1/annuaire/models.py | 3 +++ ateliers/django/carto_1_1/annuaire/tests.py | 23 +++++++++++++++++++++++ ateliers/django/carto_1_1/annuaire/views.py | 1 + 3 files changed, 27 insertions(+) create mode 100644 ateliers/django/carto_1_1/annuaire/__init__.py create mode 100644 ateliers/django/carto_1_1/annuaire/models.py create mode 100644 ateliers/django/carto_1_1/annuaire/tests.py create mode 100644 ateliers/django/carto_1_1/annuaire/views.py diff --git a/ateliers/django/carto_1_1/annuaire/__init__.py b/ateliers/django/carto_1_1/annuaire/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/ateliers/django/carto_1_1/annuaire/models.py b/ateliers/django/carto_1_1/annuaire/models.py new file mode 100644 index 0000000..71a8362 --- /dev/null +++ b/ateliers/django/carto_1_1/annuaire/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/ateliers/django/carto_1_1/annuaire/tests.py b/ateliers/django/carto_1_1/annuaire/tests.py new file mode 100644 index 0000000..2247054 --- /dev/null +++ b/ateliers/django/carto_1_1/annuaire/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/ateliers/django/carto_1_1/annuaire/views.py b/ateliers/django/carto_1_1/annuaire/views.py new file mode 100644 index 0000000..60f00ef --- /dev/null +++ b/ateliers/django/carto_1_1/annuaire/views.py @@ -0,0 +1 @@ +# Create your views here. -- 1.7.10.4