Skip to content

Commit

Permalink
Merge branch 'develop' of github.com:bsgreenb/Wordout into initial_re…
Browse files Browse the repository at this point in the history
…factoring
  • Loading branch information
bsgreenb committed Jan 30, 2012
2 parents fa2ffab + 112d59c commit 7e05c3a
Show file tree
Hide file tree
Showing 7 changed files with 273 additions and 8 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

.DS_Store*

wordoutdb
*.log
*.pot
*.pyc
Expand Down
8 changes: 8 additions & 0 deletions test_display_sharers.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
from wordout.models import *
from django.db import connection

def test_shit():
customer = Customer.objects.get(pk=1)
result = customer.display_sharers(order_by='action_count',action_type_id=1)
print len(connection.queries)
return result
8 changes: 0 additions & 8 deletions tests.py
Original file line number Diff line number Diff line change
@@ -1,8 +0,0 @@
from wordout.models import *
from django.db import connection

def test_shit():
customer = Customer.objects.get(pk=1)
result = customer.display_sharers(order_by='action_count',action_type_id=1)
print len(connection.queries)
return result
Empty file.
Binary file modified wordout/migrations/0001_initial.pyc
Binary file not shown.
264 changes: 264 additions & 0 deletions wordout/migrations/0002_initial.py

Large diffs are not rendered by default.

Binary file modified wordout/migrations/__init__.pyc
Binary file not shown.

0 comments on commit 7e05c3a

Please sign in to comment.