diff options
Diffstat (limited to 'test/stylesheet/tc_gradient_stop.rb')
| -rw-r--r-- | test/stylesheet/tc_gradient_stop.rb | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/test/stylesheet/tc_gradient_stop.rb b/test/stylesheet/tc_gradient_stop.rb index a4cd4ef8..48b0d69d 100644 --- a/test/stylesheet/tc_gradient_stop.rb +++ b/test/stylesheet/tc_gradient_stop.rb @@ -8,20 +8,21 @@ class TestGradientStop < Test::Unit::TestCase def teardown; end def test_initialiation - assert_equal(@item.color.rgb, "FFFF0000") - assert_equal(@item.position, 1.0) + assert_equal("FFFF0000", @item.color.rgb) + assert_in_delta(@item.position, 1.0) end def test_position assert_raise(ArgumentError) { @item.position = -1.1 } assert_nothing_raised { @item.position = 0.0 } - assert_equal(@item.position, 0.0) + assert_in_delta(@item.position, 0.0) end def test_color assert_raise(ArgumentError) { @item.color = nil } color = Axlsx::Color.new(:rgb => "FF0000FF") @item.color = color - assert_equal(@item.color.rgb, "FF0000FF") + + assert_equal("FF0000FF", @item.color.rgb) end end |
