2015-12-16 00:07:31 -05:00
|
|
|
# frozen_string_literal: false
|
2005-09-23 19:30:09 -04:00
|
|
|
# $Id$
|
2003-09-17 05:52:50 -04:00
|
|
|
|
|
|
|
require 'fileutils'
|
2003-11-25 04:13:58 -05:00
|
|
|
require 'test/unit'
|
2013-02-28 21:09:42 -05:00
|
|
|
require_relative 'visibility_tests'
|
2003-09-17 05:52:50 -04:00
|
|
|
|
2005-09-23 19:30:09 -04:00
|
|
|
class TestFileUtilsNoWrite < Test::Unit::TestCase
|
2003-09-17 05:52:50 -04:00
|
|
|
|
|
|
|
include FileUtils::NoWrite
|
2013-02-28 21:09:42 -05:00
|
|
|
include TestFileUtils::Visibility
|
2003-09-17 05:52:50 -04:00
|
|
|
|
2013-02-28 21:09:42 -05:00
|
|
|
def setup
|
|
|
|
super
|
|
|
|
@fu_module = FileUtils::NoWrite
|
2005-09-23 19:30:09 -04:00
|
|
|
end
|
2012-02-17 12:59:47 -05:00
|
|
|
|
2003-09-17 05:52:50 -04:00
|
|
|
end
|