blob: de1452a297225966216e51de978237551921fb43 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require "helper/integration_command_test_case"
class IntegrationCommandTestUnpack < IntegrationCommandTestCase
def test_unpack
setup_test_formula "testball"
mktmpdir do |path|
cmd "unpack", "testball", "--destdir=#{path}"
assert File.directory?("#{path}/testball-0.1"),
"The tarball should be unpacked"
end
end
end
|