Skip to content

Commit

Permalink
add core app
Browse files Browse the repository at this point in the history
  • Loading branch information
matheussl committed Jul 7, 2013
1 parent 5fba879 commit d4bf1ce
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 0 deletions.
Empty file.
Empty file.
3 changes: 3 additions & 0 deletions volunter/volunter/app/core/models.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from django.db import models

# Create your models here.
16 changes: 16 additions & 0 deletions volunter/volunter/app/core/tests.py
Original file line number Diff line number Diff line change
@@ -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)
1 change: 1 addition & 0 deletions volunter/volunter/app/core/views.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Create your views here.

0 comments on commit d4bf1ce

Please sign in to comment.