mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
dd3851d278
[Fix GH-1763] From: MSP-Greg <MSP-Greg@users.noreply.github.com> git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62738 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
42 lines
1.2 KiB
Ruby
42 lines
1.2 KiB
Ruby
# frozen_string_literal: true
|
|
require 'test/unit'
|
|
require 'fileutils'
|
|
|
|
class TestFileUtilsInc < Test::Unit::TestCase
|
|
end
|
|
|
|
##
|
|
# These tests are reused in the FileUtils::Verbose, FileUtils::NoWrite and
|
|
# FileUtils::DryRun tests
|
|
|
|
module TestFileUtilsInc::Visibility
|
|
|
|
FileUtils::METHODS.each do |m|
|
|
define_method "test_singleton_visibility_#{m}" do
|
|
assert @fu_module.respond_to?(m, true),
|
|
"FileUtils::Verbose.#{m} is not defined"
|
|
assert @fu_module.respond_to?(m, false),
|
|
"FileUtils::Verbose.#{m} is not public"
|
|
end
|
|
|
|
define_method "test_visibility_#{m}" do
|
|
assert respond_to?(m, true),
|
|
"FileUtils::Verbose\##{m} is not defined"
|
|
assert @fu_module.private_method_defined?(m),
|
|
"FileUtils::Verbose\##{m} is not private"
|
|
end
|
|
end
|
|
|
|
FileUtils::StreamUtils_.private_instance_methods.each do |m|
|
|
define_method "test_singleton_visibility_#{m}" do
|
|
assert @fu_module.respond_to?(m, true),
|
|
"FileUtils::Verbose\##{m} is not defined"
|
|
end
|
|
|
|
define_method "test_visibility_#{m}" do
|
|
assert respond_to?(m, true),
|
|
"FileUtils::Verbose\##{m} is not defined"
|
|
end
|
|
end
|
|
|
|
end
|