@@ -703,7 +703,7 @@ class ListboxTest(AbstractWidgetTest, unittest.TestCase):
703703 'disabledforeground' , 'exportselection' ,
704704 'font' , 'foreground' , 'height' ,
705705 'highlightbackground' , 'highlightcolor' , 'highlightthickness' ,
706- 'listvariable' , 'relief' ,
706+ 'justify' , ' listvariable' , 'relief' ,
707707 'selectbackground' , 'selectborderwidth' , 'selectforeground' ,
708708 'selectmode' , 'setgrid' , 'state' ,
709709 'takefocus' , 'width' , 'xscrollcommand' , 'yscrollcommand' ,
@@ -717,6 +717,8 @@ def test_activestyle(self):
717717 self .checkEnumParam (widget , 'activestyle' ,
718718 'dotbox' , 'none' , 'underline' )
719719
720+ test_justify = requires_tcl (8 , 6 , 5 )(StandardOptionsTests .test_justify )
721+
720722 def test_listvariable (self ):
721723 widget = self .create ()
722724 var = tkinter .DoubleVar (self .root )
@@ -951,7 +953,9 @@ class PanedWindowTest(AbstractWidgetTest, unittest.TestCase):
951953 OPTIONS = (
952954 'background' , 'borderwidth' , 'cursor' ,
953955 'handlepad' , 'handlesize' , 'height' ,
954- 'opaqueresize' , 'orient' , 'relief' ,
956+ 'opaqueresize' , 'orient' ,
957+ 'proxybackground' , 'proxyborderwidth' , 'proxyrelief' ,
958+ 'relief' ,
955959 'sashcursor' , 'sashpad' , 'sashrelief' , 'sashwidth' ,
956960 'showhandle' , 'width' ,
957961 )
@@ -978,6 +982,23 @@ def test_opaqueresize(self):
978982 widget = self .create ()
979983 self .checkBooleanParam (widget , 'opaqueresize' )
980984
985+ @requires_tcl (8 , 6 , 5 )
986+ def test_proxybackground (self ):
987+ widget = self .create ()
988+ self .checkColorParam (widget , 'proxybackground' )
989+
990+ @requires_tcl (8 , 6 , 5 )
991+ def test_proxyborderwidth (self ):
992+ widget = self .create ()
993+ self .checkPixelsParam (widget , 'proxyborderwidth' ,
994+ 0 , 1.3 , 2.9 , 6 , - 2 , '10p' ,
995+ conv = noconv )
996+
997+ @requires_tcl (8 , 6 , 5 )
998+ def test_proxyrelief (self ):
999+ widget = self .create ()
1000+ self .checkReliefParam (widget , 'proxyrelief' )
1001+
9811002 def test_sashcursor (self ):
9821003 widget = self .create ()
9831004 self .checkCursorParam (widget , 'sashcursor' )
0 commit comments