@@ -700,7 +700,7 @@ class ListboxTest(AbstractWidgetTest, unittest.TestCase):
700700 'disabledforeground' , 'exportselection' ,
701701 'font' , 'foreground' , 'height' ,
702702 'highlightbackground' , 'highlightcolor' , 'highlightthickness' ,
703- 'listvariable' , 'relief' ,
703+ 'justify' , ' listvariable' , 'relief' ,
704704 'selectbackground' , 'selectborderwidth' , 'selectforeground' ,
705705 'selectmode' , 'setgrid' , 'state' ,
706706 'takefocus' , 'width' , 'xscrollcommand' , 'yscrollcommand' ,
@@ -714,6 +714,8 @@ def test_activestyle(self):
714714 self .checkEnumParam (widget , 'activestyle' ,
715715 'dotbox' , 'none' , 'underline' )
716716
717+ test_justify = requires_tcl (8 , 6 , 5 )(StandardOptionsTests .test_justify .im_func )
718+
717719 def test_listvariable (self ):
718720 widget = self .create ()
719721 var = tkinter .DoubleVar (self .root )
@@ -947,7 +949,9 @@ class PanedWindowTest(AbstractWidgetTest, unittest.TestCase):
947949 OPTIONS = (
948950 'background' , 'borderwidth' , 'cursor' ,
949951 'handlepad' , 'handlesize' , 'height' ,
950- 'opaqueresize' , 'orient' , 'relief' ,
952+ 'opaqueresize' , 'orient' ,
953+ 'proxybackground' , 'proxyborderwidth' , 'proxyrelief' ,
954+ 'relief' ,
951955 'sashcursor' , 'sashpad' , 'sashrelief' , 'sashwidth' ,
952956 'showhandle' , 'width' ,
953957 )
@@ -974,6 +978,23 @@ def test_opaqueresize(self):
974978 widget = self .create ()
975979 self .checkBooleanParam (widget , 'opaqueresize' )
976980
981+ @requires_tcl (8 , 6 , 5 )
982+ def test_proxybackground (self ):
983+ widget = self .create ()
984+ self .checkColorParam (widget , 'proxybackground' )
985+
986+ @requires_tcl (8 , 6 , 5 )
987+ def test_proxyborderwidth (self ):
988+ widget = self .create ()
989+ self .checkPixelsParam (widget , 'proxyborderwidth' ,
990+ 0 , 1.3 , 2.9 , 6 , - 2 , '10p' ,
991+ conv = noconv )
992+
993+ @requires_tcl (8 , 6 , 5 )
994+ def test_proxyrelief (self ):
995+ widget = self .create ()
996+ self .checkReliefParam (widget , 'proxyrelief' )
997+
977998 def test_sashcursor (self ):
978999 widget = self .create ()
9791000 self .checkCursorParam (widget , 'sashcursor' )
0 commit comments