Sha256: 7c5e1effeb05075da400d4f8b68f93e457ebd65323014ca055dda03537a3d12c

Contents?: true

Size: 822 Bytes

Versions: 14

Compression:

Stored size: 822 Bytes

Contents

require 'tc_helper.rb'

class TestAxlsx < Test::Unit::TestCase

  def setup_wide
    @wide_test_points = { "A3" =>      0,
      "Z3"    =>                      25,
      "B3"    =>                       1,
      "AA3"   =>             1 * 26 +  0,
      "AAA3"  => 1 * 26**2 + 1 * 26 +  0,
      "AAZ3"  => 1 * 26**2 + 1 * 26 + 25,
      "ABA3"  => 1 * 26**2 + 2 * 26 +  0,
      "BZU3"  => 2 * 26**2 + 26 * 26 + 20
    }
  end

  def test_cell_range
    #To do
  end

  def test_name_to_indices
    setup_wide
    @wide_test_points.each do |key, value|
      assert_equal(Axlsx.name_to_indices(key), [value,2])
    end
  end

  def test_col_ref
    setup_wide
    @wide_test_points.each do |key, value|
      assert_equal(Axlsx.col_ref(value), key.gsub(/\d+/, ''))
    end
  end

  def test_cell_r
    # todo
  end

end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
axlsx-1.3.1 test/tc_axlsx.rb
axlsx-1.2.3 test/tc_axlsx.rb
axlsx-1.2.2 test/tc_axlsx.rb
axlsx-1.2.1 test/tc_axlsx.rb
axlsx-1.2.0 test/tc_axlsx.rb
axlsx-1.1.8 test/tc_axlsx.rb
axlsx-1.1.7 test/tc_axlsx.rb
axlsx-1.1.6 test/tc_axlsx.rb
axlsx-1.1.5 test/tc_axlsx.rb
axlsx-1.1.4 test/tc_axlsx.rb
axlsx-1.1.3 test/tc_axlsx.rb
axlsx-1.1.2 test/tc_axlsx.rb
axlsx-1.1.1 test/tc_axlsx.rb
axlsx-1.1.0 test/tc_axlsx.rb