diff options
Diffstat (limited to 'test/stylesheet/tc_table_style.rb')
| -rw-r--r-- | test/stylesheet/tc_table_style.rb | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/test/stylesheet/tc_table_style.rb b/test/stylesheet/tc_table_style.rb index a003c37a..6c15ebae 100644 --- a/test/stylesheet/tc_table_style.rb +++ b/test/stylesheet/tc_table_style.rb @@ -8,35 +8,37 @@ class TestTableStyle < Test::Unit::TestCase def teardown; end def test_initialiation - assert_equal(@item.name, "fisher") - assert_equal(@item.pivot, nil) - assert_equal(@item.table, nil) + assert_equal("fisher", @item.name) + assert_nil(@item.pivot) + assert_nil(@item.table) ts = Axlsx::TableStyle.new 'price', :pivot => true, :table => true - assert_equal(ts.name, 'price') - assert_equal(ts.pivot, true) - assert_equal(ts.table, true) + + assert_equal('price', ts.name) + assert(ts.pivot) + assert(ts.table) end def test_name assert_raise(ArgumentError) { @item.name = -1.1 } assert_nothing_raised { @item.name = "lovely table style" } - assert_equal(@item.name, "lovely table style") + assert_equal("lovely table style", @item.name) end def test_pivot assert_raise(ArgumentError) { @item.pivot = -1.1 } assert_nothing_raised { @item.pivot = true } - assert_equal(@item.pivot, true) + assert(@item.pivot) end def test_table assert_raise(ArgumentError) { @item.table = -1.1 } assert_nothing_raised { @item.table = true } - assert_equal(@item.table, true) + assert(@item.table) end def test_to_xml_string doc = Nokogiri::XML(@item.to_xml_string) + assert(doc.xpath("//tableStyle[@name='#{@item.name}']")) end end |
