コード例 #1
0
ファイル: tests.py プロジェクト: WoLpH/django-tags-input
 def test_get_mapping_broken_mappings(self):
     utils.get_mapping(models.Foo)
コード例 #2
0
ファイル: tests.py プロジェクト: WoLpH/django-tags-input
 def test_custom_queryset_mapping(self):
     utils.get_mapping(models.Spam)
コード例 #3
0
ファイル: tests.py プロジェクト: WoLpH/django-tags-input
 def test_get_mapping_undefined_exception(self):
     utils.get_mapping(auth_models.User)
コード例 #4
0
ファイル: tests.py プロジェクト: WoLpH/django-tags-input
 def test_get_mapping_type_exception(self):
     utils.get_mapping(BaseTestCase)
コード例 #5
0
ファイル: tests.py プロジェクト: WoLpH/django-tags-input
 def test_multiple_fields_mapping(self):
     utils.get_mapping(models.Egg)
コード例 #6
0
 def test_get_mapping_broken_mappings(self):
     utils.get_mapping(models.Foo)
コード例 #7
0
 def test_get_mapping_undefined_exception(self):
     utils.get_mapping(auth_models.User)
コード例 #8
0
 def test_custom_queryset_mapping(self):
     utils.get_mapping(models.Spam)
コード例 #9
0
 def test_multiple_fields_mapping(self):
     utils.get_mapping(models.Egg)
コード例 #10
0
 def test_get_mapping_type_exception(self):
     utils.get_mapping(BaseTestCase)