Sha256: 8d4e4500ba1da261db9ef10f6903fd9aa835092f3b46bd3c15da6edfee90243c

Contents?: true

Size: 975 Bytes

Versions: 7

Compression:

Stored size: 975 Bytes

Contents

require 'tc_helper.rb'

class TestCatAxis < Test::Unit::TestCase
  def setup
    @axis = Axlsx::CatAxis.new 12345, 54321
  end
  def teardown
  end

  def test_initialization
    assert_equal(@axis.auto, 1, "axis auto default incorrect")
    assert_equal(@axis.lblAlgn, :ctr, "label align default incorrect")
    assert_equal(@axis.lblOffset, "100%", "label offset default incorrect")
  end

  def test_auto
    assert_raise(ArgumentError, "requires valid auto") { @axis.auto = :nowhere }
    assert_nothing_raised("accepts valid auto") { @axis.auto = false }
  end

  def test_lblAlgn
    assert_raise(ArgumentError, "requires valid label alignment") { @axis.lblAlgn = :nowhere }
    assert_nothing_raised("accepts valid label alignment") { @axis.lblAlgn = :r }
  end

  def test_lblOffset
    assert_raise(ArgumentError, "requires valid label offset") { @axis.lblOffset = 100 }
    assert_nothing_raised("accepts valid label offset") { @axis.lblOffset = "20%" }
  end

end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
axlsx-1.1.6 test/drawing/tc_cat_axis.rb
axlsx-1.1.5 test/drawing/tc_cat_axis.rb
axlsx-1.1.4 test/drawing/tc_cat_axis.rb
axlsx-1.1.3 test/drawing/tc_cat_axis.rb
axlsx-1.1.2 test/drawing/tc_cat_axis.rb
axlsx-1.1.1 test/drawing/tc_cat_axis.rb
axlsx-1.1.0 test/drawing/tc_cat_axis.rb