fix rubocop Style/EmptyLinesAroundBlockBody cop

This commit is contained in:
Pavel Lobashov 2015-03-21 11:20:23 +03:00
parent eba5fa1983
commit b1c0dc2428
5 changed files with 0 additions and 10 deletions

View File

@ -110,12 +110,6 @@ Style/ElseAlignment:
Style/EmptyElse:
Enabled: false
# Offense count: 3
# Cop supports --auto-correct.
# Configuration parameters: EnforcedStyle, SupportedStyles.
Style/EmptyLinesAroundBlockBody:
Enabled: false
# Offense count: 40
# Cop supports --auto-correct.
# Configuration parameters: EnforcedStyle, SupportedStyles.

View File

@ -55,7 +55,6 @@ class ZipCentralDirectoryEntryTest < MiniTest::Test
# file name (variable size)
# extra field (variable size)
# file comment (variable size)
end
end

View File

@ -26,7 +26,6 @@ class ZipFileExtractTest < MiniTest::Test
assert(File.exist?(EXTRACTED_FILENAME))
AssertEntry.assert_contents(EXTRACTED_FILENAME,
entry.get_input_stream() { |is| is.read })
end
end

View File

@ -52,7 +52,6 @@ class ZipFileSplitTest < MiniTest::Test
assert(File.exist?(EXTRACTED_FILENAME))
AssertEntry.assert_contents(EXTRACTED_FILENAME,
entry.get_input_stream() { |is| is.read })
end
end
end

View File

@ -51,7 +51,6 @@ class ZipFsFileMutatingTest < MiniTest::Test
def test_chmod
::Zip::File.open(TEST_ZIP) do |zf|
zf.file.chmod(0765, "file1")
end