Skip to content

Commit

Permalink
Project initialed
Browse files Browse the repository at this point in the history
I really have no idea why I'm initialing!
  • Loading branch information
Alir3z4 committed Mar 22, 2013
0 parents commit a80d993
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# IDE specific
.idea/
# file
*.pyc
manage.py
dump.json
MANIFEST
# dir
build/
dist/
*.egg-info/
logs/
src/
media/
django_base64field_project/
Empty file added django_base64field/__init__.py
Empty file.
3 changes: 3 additions & 0 deletions django_base64field/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 django_base64field/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 django_base64field/views.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Create your views here.

0 comments on commit a80d993

Please sign in to comment.