Skip to content

Commit

Permalink
Move tests around
Browse files Browse the repository at this point in the history
  • Loading branch information
mmoravcik committed Jun 8, 2014
1 parent 3fb71af commit ce67081
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 0 deletions.
File renamed without changes.
File renamed without changes.
Empty file added tests/__init__.py
Empty file.
File renamed without changes.
4 changes: 4 additions & 0 deletions my_css/tests/tests.py → tests/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ class MyCSS(TestCase):
def test_unicode_representation(self):
my_css = models.MyCSS.objects.create(css=' ')
self.assertEqual(unicode(my_css), unicode(my_css.id))
my_css.css = ' '
my_css.save()
my_css_archive = models.MyCSSArchive.objects.get(id=1)
self.assertEqual(unicode(my_css_archive), unicode(my_css_archive.id))


class MyCSSFileCreation(TestCase):
Expand Down

0 comments on commit ce67081

Please sign in to comment.