2013-02-15 16:52:16 +00:00
|
|
|
require 'test/unit'
|
|
|
|
require 'environment'
|
2014-02-27 14:21:36 +00:00
|
|
|
require 'proxy_tests'
|
|
|
|
|
2013-02-15 16:52:16 +00:00
|
|
|
|
|
|
|
class TestProxyMode < Test::Unit::TestCase
|
2014-02-27 14:21:36 +00:00
|
|
|
include ProxyTests
|
|
|
|
|
2013-02-15 16:52:16 +00:00
|
|
|
def setup
|
|
|
|
super
|
|
|
|
@env = Environment.new
|
2014-02-27 14:21:36 +00:00
|
|
|
@env.writefile1( "f" * 16 )
|
2013-02-15 16:52:16 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def teardown
|
|
|
|
@env.cleanup
|
|
|
|
super
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|