1+ from unittest import skipIf
2+
13from cms .models import PageContent , PageUrl
24from cms .test_utils .testcases import CMSTestCase
35from django import forms
@@ -31,6 +33,7 @@ def test_factory_cache(self):
3133 id (grouper_form_factory (PollContent , language = "en" )),
3234 )
3335
36+ @skipIf (True , "Autocomplete fields does not generate choices" )
3437 def test_grouper_selector_default_label (self ):
3538 """
3639 Grouper selector shows the default label format when no override is set
@@ -42,7 +45,7 @@ def test_grouper_selector_default_label(self):
4245 (version .content .poll .pk , str (version .content .poll )),
4346 form_class .base_fields ["poll" ].choices ,
4447 )
45-
48+ @ skipIf ( True , "Autocomplete fields cannot show label" )
4649 def test_grouper_selector_non_default_label_unpublished (self ):
4750 """
4851 Grouper selector shows the PageContent label format when PageContent is set
@@ -54,6 +57,7 @@ def test_grouper_selector_non_default_label_unpublished(self):
5457 (version .content .page .pk , label ), form_class .base_fields ["page" ].choices
5558 )
5659
60+ @skipIf (True , "Autocomplete fields cannot show label" )
5761 def test_grouper_selector_non_default_label (self ):
5862 """
5963 Grouper selector shows the PageContent label format when PageContent is set
0 commit comments