Skip to content

Commit

Permalink
now using django.test.TestCase
Browse files Browse the repository at this point in the history
  • Loading branch information
montylounge committed Jan 20, 2010
1 parent e12a17d commit c8d33de
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions mingus/tests.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
from django.test.client import Client
import unittest
from django.test import TestCase


class MingusClientTests(unittest.TestCase):
class MingusClientTests(TestCase):

fixtures = ['test_data.json',]
fixtures = ['test_data.json', ]

def setUp(self):
pass
Expand Down

0 comments on commit c8d33de

Please sign in to comment.