# -*- coding: utf-8 -*-

from django.test import TestCase, TransactionTestCase


#for some reason, mixing TestCase with TransactionTestCase will fail weirdly, 
#quiet possibly it's django bug, remove 'pass' if you want to test for transactions
class TestSlugs(TransactionTestCase):
    pass
    
    
        

class TestDatabaseIntegrity(TransactionTestCase):
    def test_add_duplicate_items(self):
        return
        

class Test1(TransactionTestCase):
    def test(self):
        self.client.get('/')
