blob: 27a90b0b2d252f5d030f82b9c026fca4cf70c54e (
plain)
1
2
3
4
5
6
7
8
|
require 'tc_helper'
class TestAxes < Test::Unit::TestCase
def test_constructor_requires_cat_axis_first
assert_raise(ArgumentError) { Axlsx::Axes.new(:val_axis => Axlsx::ValAxis, :cat_axis => Axlsx::CatAxis) }
assert_nothing_raised { Axlsx::Axes.new(:cat_axis => Axlsx::CatAxis, :val_axis => Axlsx::ValAxis) }
end
end
|