2017-01-07 05:14:07 +03:00
|
|
|
# frozen_string_literal: true
|
2005-09-24 03:30:09 +04:00
|
|
|
# $Id$
|
|
|
|
|
|
|
|
require 'test/unit'
|
|
|
|
require 'fileutils'
|
2013-03-01 06:09:42 +04:00
|
|
|
require_relative 'visibility_tests'
|
2005-09-24 03:30:09 +04:00
|
|
|
|
|
|
|
class TestFileUtilsVerbose < Test::Unit::TestCase
|
|
|
|
|
|
|
|
include FileUtils::Verbose
|
2022-04-22 23:01:43 +03:00
|
|
|
include TestFileUtilsIncVisibility
|
2005-09-24 03:30:09 +04:00
|
|
|
|
2013-03-01 06:09:42 +04:00
|
|
|
def setup
|
|
|
|
super
|
|
|
|
@fu_module = FileUtils::Verbose
|
2005-09-24 03:30:09 +04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|