mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
This commit was manufactured by cvs2svn to create branch 'ruby_1_8'.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@9288 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
f720581990
commit
cd244d63ca
2 changed files with 50 additions and 0 deletions
25
test/fileutils/test_dryrun.rb
Normal file
25
test/fileutils/test_dryrun.rb
Normal file
|
@ -0,0 +1,25 @@
|
|||
# $Id$
|
||||
|
||||
require 'test/unit'
|
||||
require 'fileutils'
|
||||
|
||||
class TestFileUtilsDryRun < Test::Unit::TestCase
|
||||
|
||||
include FileUtils::DryRun
|
||||
|
||||
def test_visibility
|
||||
FileUtils::METHODS.each do |m|
|
||||
assert_equal true, FileUtils::DryRun.respond_to?(m, true),
|
||||
"FileUtils::DryRun.#{m} not defined"
|
||||
assert_equal true, FileUtils::DryRun.respond_to?(m, false),
|
||||
"FileUtils::DryRun.#{m} not public"
|
||||
end
|
||||
FileUtils::METHODS.each do |m|
|
||||
assert_equal true, respond_to?(m, true)
|
||||
"FileUtils::DryRun\##{m} is not defined"
|
||||
assert_equal true, FileUtils::DryRun.private_method_defined?(m),
|
||||
"FileUtils::DryRun\##{m} is not private"
|
||||
end
|
||||
end
|
||||
|
||||
end
|
25
test/fileutils/test_verbose.rb
Normal file
25
test/fileutils/test_verbose.rb
Normal file
|
@ -0,0 +1,25 @@
|
|||
# $Id$
|
||||
|
||||
require 'test/unit'
|
||||
require 'fileutils'
|
||||
|
||||
class TestFileUtilsVerbose < Test::Unit::TestCase
|
||||
|
||||
include FileUtils::Verbose
|
||||
|
||||
def test_visibility
|
||||
FileUtils::METHODS.each do |m|
|
||||
assert_equal true, FileUtils::Verbose.respond_to?(m, true),
|
||||
"FileUtils::Verbose.#{m} is not defined"
|
||||
assert_equal true, FileUtils::Verbose.respond_to?(m, false),
|
||||
"FileUtils::Verbose.#{m} is not public"
|
||||
end
|
||||
FileUtils::METHODS.each do |m|
|
||||
assert_equal true, respond_to?(m, true),
|
||||
"FileUtils::Verbose.#{m} is not defined"
|
||||
assert_equal true, FileUtils::Verbose.private_method_defined?(m),
|
||||
"FileUtils::Verbose.#{m} is not private"
|
||||
end
|
||||
end
|
||||
|
||||
end
|
Loading…
Add table
Reference in a new issue