summaryrefslogtreecommitdiffhomepage
path: root/test/stylesheet/tc_xf.rb
diff options
context:
space:
mode:
authorGeremia Taglialatela <[email protected]>2023-04-13 13:13:34 +0200
committerGeremia Taglialatela <[email protected]>2023-05-03 16:05:17 +0200
commit350f7ae9a04f3d39c099cc54f7c04bf31f385d96 (patch)
treee84af2a70d3b18a0b94c784338faf48215c9c8a8 /test/stylesheet/tc_xf.rb
parente81036b76e734ab03fac31faafb9732f6b3b2928 (diff)
downloadcaxlsx-350f7ae9a04f3d39c099cc54f7c04bf31f385d96.tar.gz
caxlsx-350f7ae9a04f3d39c099cc54f7c04bf31f385d96.zip
Add RuboCop Minitest
Diffstat (limited to 'test/stylesheet/tc_xf.rb')
-rw-r--r--test/stylesheet/tc_xf.rb56
1 files changed, 28 insertions, 28 deletions
diff --git a/test/stylesheet/tc_xf.rb b/test/stylesheet/tc_xf.rb
index 9a972aaf..71ce71a4 100644
--- a/test/stylesheet/tc_xf.rb
+++ b/test/stylesheet/tc_xf.rb
@@ -8,21 +8,21 @@ class TestXf < Test::Unit::TestCase
def teardown; end
def test_initialiation
- assert_equal(@item.alignment, nil)
- assert_equal(@item.protection, nil)
- assert_equal(@item.numFmtId, nil)
- assert_equal(@item.fontId, nil)
- assert_equal(@item.fillId, nil)
- assert_equal(@item.borderId, nil)
- assert_equal(@item.xfId, nil)
- assert_equal(@item.quotePrefix, nil)
- assert_equal(@item.pivotButton, nil)
- assert_equal(@item.applyNumberFormat, nil)
- assert_equal(@item.applyFont, nil)
- assert_equal(@item.applyFill, nil)
- assert_equal(@item.applyBorder, nil)
- assert_equal(@item.applyAlignment, nil)
- assert_equal(@item.applyProtection, nil)
+ assert_nil(@item.alignment)
+ assert_nil(@item.protection)
+ assert_nil(@item.numFmtId)
+ assert_nil(@item.fontId)
+ assert_nil(@item.fillId)
+ assert_nil(@item.borderId)
+ assert_nil(@item.xfId)
+ assert_nil(@item.quotePrefix)
+ assert_nil(@item.pivotButton)
+ assert_nil(@item.applyNumberFormat)
+ assert_nil(@item.applyFont)
+ assert_nil(@item.applyFill)
+ assert_nil(@item.applyBorder)
+ assert_nil(@item.applyAlignment)
+ assert_nil(@item.applyProtection)
end
def test_alignment
@@ -40,78 +40,78 @@ class TestXf < Test::Unit::TestCase
def test_numFmtId
assert_raise(ArgumentError) { @item.numFmtId = -1.1 }
assert_nothing_raised { @item.numFmtId = 0 }
- assert_equal(@item.numFmtId, 0)
+ assert_equal(0, @item.numFmtId)
end
def test_fillId
assert_raise(ArgumentError) { @item.fillId = -1.1 }
assert_nothing_raised { @item.fillId = 0 }
- assert_equal(@item.fillId, 0)
+ assert_equal(0, @item.fillId)
end
def test_fontId
assert_raise(ArgumentError) { @item.fontId = -1.1 }
assert_nothing_raised { @item.fontId = 0 }
- assert_equal(@item.fontId, 0)
+ assert_equal(0, @item.fontId)
end
def test_borderId
assert_raise(ArgumentError) { @item.borderId = -1.1 }
assert_nothing_raised { @item.borderId = 0 }
- assert_equal(@item.borderId, 0)
+ assert_equal(0, @item.borderId)
end
def test_xfId
assert_raise(ArgumentError) { @item.xfId = -1.1 }
assert_nothing_raised { @item.xfId = 0 }
- assert_equal(@item.xfId, 0)
+ assert_equal(0, @item.xfId)
end
def test_quotePrefix
assert_raise(ArgumentError) { @item.quotePrefix = -1.1 }
assert_nothing_raised { @item.quotePrefix = false }
- assert_equal(@item.quotePrefix, false)
+ refute(@item.quotePrefix)
end
def test_pivotButton
assert_raise(ArgumentError) { @item.pivotButton = -1.1 }
assert_nothing_raised { @item.pivotButton = false }
- assert_equal(@item.pivotButton, false)
+ refute(@item.pivotButton)
end
def test_applyNumberFormat
assert_raise(ArgumentError) { @item.applyNumberFormat = -1.1 }
assert_nothing_raised { @item.applyNumberFormat = false }
- assert_equal(@item.applyNumberFormat, false)
+ refute(@item.applyNumberFormat)
end
def test_applyFont
assert_raise(ArgumentError) { @item.applyFont = -1.1 }
assert_nothing_raised { @item.applyFont = false }
- assert_equal(@item.applyFont, false)
+ refute(@item.applyFont)
end
def test_applyFill
assert_raise(ArgumentError) { @item.applyFill = -1.1 }
assert_nothing_raised { @item.applyFill = false }
- assert_equal(@item.applyFill, false)
+ refute(@item.applyFill)
end
def test_applyBorder
assert_raise(ArgumentError) { @item.applyBorder = -1.1 }
assert_nothing_raised { @item.applyBorder = false }
- assert_equal(@item.applyBorder, false)
+ refute(@item.applyBorder)
end
def test_applyAlignment
assert_raise(ArgumentError) { @item.applyAlignment = -1.1 }
assert_nothing_raised { @item.applyAlignment = false }
- assert_equal(@item.applyAlignment, false)
+ refute(@item.applyAlignment)
end
def test_applyProtection
assert_raise(ArgumentError) { @item.applyProtection = -1.1 }
assert_nothing_raised { @item.applyProtection = false }
- assert_equal(@item.applyProtection, false)
+ refute(@item.applyProtection)
end
end