зеркало из https://github.com/github/ruby.git
19 строки
301 B
Ruby
19 строки
301 B
Ruby
# frozen_string_literal: true
|
|
# $Id$
|
|
|
|
require 'fileutils'
|
|
require 'test/unit'
|
|
require_relative 'visibility_tests'
|
|
|
|
class TestFileUtilsNoWrite < Test::Unit::TestCase
|
|
|
|
include FileUtils::NoWrite
|
|
include TestFileUtils::Visibility
|
|
|
|
def setup
|
|
super
|
|
@fu_module = FileUtils::NoWrite
|
|
end
|
|
|
|
end
|