2017-01-07 02:14:07 +00:00
|
|
|
# frozen_string_literal: true
|
2005-09-23 23:30:09 +00:00
|
|
|
# $Id$
|
2003-09-17 09:52:50 +00:00
|
|
|
|
|
|
|
require 'fileutils'
|
2003-11-25 09:13:58 +00:00
|
|
|
require 'test/unit'
|
2013-03-01 02:09:42 +00:00
|
|
|
require_relative 'visibility_tests'
|
2003-09-17 09:52:50 +00:00
|
|
|
|
2005-09-23 23:30:09 +00:00
|
|
|
class TestFileUtilsNoWrite < Test::Unit::TestCase
|
2003-09-17 09:52:50 +00:00
|
|
|
|
|
|
|
include FileUtils::NoWrite
|
2018-03-13 06:29:02 +00:00
|
|
|
include TestFileUtilsInc::Visibility
|
2003-09-17 09:52:50 +00:00
|
|
|
|
2013-03-01 02:09:42 +00:00
|
|
|
def setup
|
|
|
|
super
|
|
|
|
@fu_module = FileUtils::NoWrite
|
2005-09-23 23:30:09 +00:00
|
|
|
end
|
2012-02-17 17:59:47 +00:00
|
|
|
|
2003-09-17 09:52:50 +00:00
|
|
|
end
|