[Fxruby-commits] CVS: FXRuby/tests TC_FXRange.rb,1.3,1.3.2.1
Status: Inactive
Brought to you by:
lyle
From: Lyle J. <ly...@us...> - 2002-05-24 17:03:19
|
Update of /cvsroot/fxruby/FXRuby/tests In directory usw-pr-cvs1:/tmp/cvs-serv11589/tests Modified Files: Tag: release10 TC_FXRange.rb Log Message: Deprecated FXRange instance methods empty(), overlap(), contains() and intersect(); replaced with empty?(), overlaps?(), contains?() and intersects?(). Index: TC_FXRange.rb =================================================================== RCS file: /cvsroot/fxruby/FXRuby/tests/TC_FXRange.rb,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -d -r1.3 -r1.3.2.1 *** TC_FXRange.rb 26 Mar 2002 21:35:20 -0000 1.3 --- TC_FXRange.rb 24 May 2002 16:24:29 -0000 1.3.2.1 *************** *** 33,41 **** assert_equal([@range.width, @range.height, @range.depth].min, @range.shortest) end ! def test_empty end ! def test_overlap end ! def test_contains end def test_include --- 33,41 ---- assert_equal([@range.width, @range.height, @range.depth].min, @range.shortest) end ! def test_empty? end ! def test_overlaps? end ! def test_contains? end def test_include *************** *** 43,53 **** def test_clipTo end ! def test_boxCorners end ! def test_boxIntersect end ! def test_boxCenter end ! def test_boxDiagonal end end --- 43,53 ---- def test_clipTo end ! def test_corners end ! def test_intersects? end ! def test_center end ! def test_diagonal end end |