Sha256: 39a7014e69e6c63e948650882e799a4ae5f44c5d0f4c7590a74164489f1a8d68

Contents?: true

Size: 695 Bytes

Versions: 18

Compression:

Stored size: 695 Bytes

Contents

require 'test/unit'
require 'axlsx.rb'

class TestGradientStop < Test::Unit::TestCase

  def setup
    @item = Axlsx::GradientStop.new(Axlsx::Color.new(:rgb=>"FFFF0000"), 1.0)
  end

  def teardown
  end


  def test_initialiation
    assert_equal(@item.color.rgb, "FFFF0000")
    assert_equal(@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)
  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")
  end

end

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
axlsx-1.0.18 test/stylesheet/tc_gradient_stop.rb
axlsx-1.0.17 test/stylesheet/tc_gradient_stop.rb
axlsx-1.0.16 test/stylesheet/tc_gradient_stop.rb
axlsx-1.0.15 test/stylesheet/tc_gradient_stop.rb
axlsx-1.0.14 test/stylesheet/tc_gradient_stop.rb
axlsx-1.0.12 test/stylesheet/tc_gradient_stop.rb
axlsx-1.0.11 test/stylesheet/tc_gradient_stop.rb
axlsx-1.0.10 test/stylesheet/tc_gradient_stop.rb
axlsx-1.0.10a test/stylesheet/tc_gradient_stop.rb
axlsx-1.0.9 test/stylesheet/tc_gradient_stop.rb
axlsx-1.0.8 test/stylesheet/tc_gradient_stop.rb
axlsx-1.0.7 test/stylesheet/tc_gradient_stop.rb
axlsx-1.0.6 test/stylesheet/tc_gradient_stop.rb
axlsx-1.0.5 test/stylesheet/tc_gradient_stop.rb
axlsx-1.0.4 test/stylesheet/tc_gradient_stop.rb
axlsx-1.0.3 test/stylesheet/tc_gradient_stop.rb
axlsx-1.0.1 test/stylesheet/tc_gradient_stop.rb
axlsx-1.0.0 test/stylesheet/tc_gradient_stop.rb