mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* test/rdoc/test_rdoc_info_formatting.rb (setup, teadown): uses
mktmpdir and removes it alfter the test. * test/cgi/test_cgi_session.rb (setup, teadown): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21101 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
f0f281c1c1
commit
0c835afac0
3 changed files with 11 additions and 4 deletions
|
@ -1,3 +1,10 @@
|
||||||
|
Sat Dec 27 22:41:02 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
|
* test/rdoc/test_rdoc_info_formatting.rb (setup, teadown): uses
|
||||||
|
mktmpdir and removes it alfter the test.
|
||||||
|
|
||||||
|
* test/cgi/test_cgi_session.rb (setup, teadown): ditto.
|
||||||
|
|
||||||
Sat Dec 27 21:46:10 2008 TAKANO Mitsuhiro (takano32) <tak@no32.tk>
|
Sat Dec 27 21:46:10 2008 TAKANO Mitsuhiro (takano32) <tak@no32.tk>
|
||||||
|
|
||||||
* ext/dl/test/test_base.rb: use lib64 when the architecture is x86_64.
|
* ext/dl/test/test_base.rb: use lib64 when the architecture is x86_64.
|
||||||
|
|
|
@ -7,14 +7,14 @@ require 'tmpdir'
|
||||||
|
|
||||||
class CGISessionTest < Test::Unit::TestCase
|
class CGISessionTest < Test::Unit::TestCase
|
||||||
def setup
|
def setup
|
||||||
@session_dir = Dir.tmpdir+'/__test_dir__/session_dir/'
|
@session_dir = File.join(Dir.mktmpdir('__test_dir__'), 'session_dir')
|
||||||
FileUtils.mkdir_p @session_dir
|
FileUtils.mkdir_p @session_dir
|
||||||
end
|
end
|
||||||
|
|
||||||
def teardown
|
def teardown
|
||||||
@environ.each do |key, val| ENV.delete(key) end
|
@environ.each do |key, val| ENV.delete(key) end
|
||||||
$stdout = STDOUT
|
$stdout = STDOUT
|
||||||
FileUtils.rm_rf(@session_dir)
|
FileUtils.rm_rf(File.dirname(@session_dir))
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_cgi_session_filestore
|
def test_cgi_session_filestore
|
||||||
|
|
|
@ -8,7 +8,7 @@ require 'rdoc/generator/texinfo'
|
||||||
# From chapter 18 of the Pickaxe 3rd ed. and the TexInfo manual.
|
# From chapter 18 of the Pickaxe 3rd ed. and the TexInfo manual.
|
||||||
class TestRDocInfoFormatting < MiniTest::Unit::TestCase
|
class TestRDocInfoFormatting < MiniTest::Unit::TestCase
|
||||||
def setup
|
def setup
|
||||||
@output_dir = File.join Dir.tmpdir, "test_rdoc_info_formatting_#{$$}"
|
@output_dir = File.join Dir.mktmpdir("test_rdoc_"), "info_formatting"
|
||||||
@output_file = File.join @output_dir, 'rdoc.texinfo'
|
@output_file = File.join @output_dir, 'rdoc.texinfo'
|
||||||
|
|
||||||
RDoc::RDoc.new.document(['--fmt=texinfo', '--quiet',
|
RDoc::RDoc.new.document(['--fmt=texinfo', '--quiet',
|
||||||
|
@ -20,7 +20,7 @@ class TestRDocInfoFormatting < MiniTest::Unit::TestCase
|
||||||
end
|
end
|
||||||
|
|
||||||
def teardown
|
def teardown
|
||||||
# FileUtils.rm_rf @output_dir
|
FileUtils.rm_rf File.dirname(@output_dir)
|
||||||
end
|
end
|
||||||
|
|
||||||
# Make sure tags like *this* do not make HTML
|
# Make sure tags like *this* do not make HTML
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue