summaryrefslogtreecommitdiffhomepage
path: root/test/stylesheet/tc_dxf.rb
diff options
context:
space:
mode:
authorGeremia Taglialatela <[email protected]>2023-04-05 17:17:07 +0200
committerGeremia Taglialatela <[email protected]>2023-04-06 09:54:44 +0200
commit7e90a46d43fefcf5ff7c76c14b29b6998245cfc5 (patch)
tree0562b39547ee41e86504bf661390ce0d571ff066 /test/stylesheet/tc_dxf.rb
parente9496a58dbf17d4b9bb615f3cb630f1e32574ece (diff)
downloadcaxlsx-7e90a46d43fefcf5ff7c76c14b29b6998245cfc5.tar.gz
caxlsx-7e90a46d43fefcf5ff7c76c14b29b6998245cfc5.zip
Remove Layout/TrailingWhitespace offenses
``` rubocop --only Layout/TrailingWhitespace -a ```
Diffstat (limited to 'test/stylesheet/tc_dxf.rb')
-rw-r--r--test/stylesheet/tc_dxf.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/stylesheet/tc_dxf.rb b/test/stylesheet/tc_dxf.rb
index e94a1614..eb5c4014 100644
--- a/test/stylesheet/tc_dxf.rb
+++ b/test/stylesheet/tc_dxf.rb
@@ -4,7 +4,7 @@ class TestDxf < Test::Unit::TestCase
def setup
@item = Axlsx::Dxf.new
- @styles = Axlsx::Styles.new
+ @styles = Axlsx::Styles.new
end
def teardown
@@ -46,7 +46,7 @@ class TestDxf < Test::Unit::TestCase
def test_font
assert_raise(ArgumentError) { @item.font = 1 }
assert_nothing_raised { @item.font = Axlsx::Font.new }
- assert @item.font.is_a? Axlsx::Font
+ assert @item.font.is_a? Axlsx::Font
end
def test_border
@@ -59,7 +59,7 @@ class TestDxf < Test::Unit::TestCase
@item.border = Axlsx::Border.new
doc = Nokogiri::XML.parse(@item.to_xml_string)
assert_equal(1, doc.xpath(".//dxf//border").size)
- assert_equal(0, doc.xpath(".//dxf//font").size)
+ assert_equal(0, doc.xpath(".//dxf//font").size)
end
def test_many_options_xml
@@ -69,13 +69,13 @@ class TestDxf < Test::Unit::TestCase
@item.font = Axlsx::Font.new
@item.protection = Axlsx::CellProtection.new
@item.numFmt = Axlsx::NumFmt.new
-
+
doc = Nokogiri::XML.parse(@item.to_xml_string)
assert_equal(1, doc.xpath(".//dxf//fill//patternFill[@patternType='solid']//fgColor[@rgb='FF000000']").size)
assert_equal(1, doc.xpath(".//dxf//font").size)
assert_equal(1, doc.xpath(".//dxf//protection").size)
assert_equal(1, doc.xpath(".//dxf//numFmt[@numFmtId='0'][@formatCode='']").size)
assert_equal(1, doc.xpath(".//dxf//alignment").size)
- assert_equal(1, doc.xpath(".//dxf//border").size)
+ assert_equal(1, doc.xpath(".//dxf//border").size)
end
end