test/test_font.rb in rays-0.1.48 vs test/test_font.rb in rays-0.1.49

- old
+ new

@@ -32,9 +32,12 @@ def test_width() assert_equal 0, font.width('') w = font.width 'X' assert_equal w * 2, font.width('XX') + assert_equal w * 2, font.width("XX\nX") + assert_equal w * 2, font.width("XX\nXX") + assert_equal w * 3, font.width("XX\nXXX") end def test_height() f = font assert_equal f.height, f.ascent + f.descent + f.leading