tests: clean up whitespace

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
This commit is contained in:
Jack Nagel 2012-06-20 00:51:01 -05:00
parent 40b531deb1
commit 93f8c71e21
16 changed files with 76 additions and 86 deletions

View File

@ -136,12 +136,6 @@ class MachOPathnameTests < Test::Unit::TestCase
end
class TextExecutableTests < Test::Unit::TestCase
TMPDIR = HOMEBREW_PREFIX/'tmp'
def setup
FileUtils.mkdir_p TMPDIR
end
def test_simple_shebang
pn = Pathname.new('foo')
pn.write '#!/bin/sh'
@ -189,8 +183,4 @@ class TextExecutableTests < Test::Unit::TestCase
assert pn.arch == :dunno
assert_no_match /text executable/, file(pn)
end
def teardown
TMPDIR.rmtree
end
end