blob: a3efbb4bdf2ffd1fc9bda3dd0f61195073185b36 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# frozen_string_literal: true
# $Id$
require 'fileutils'
require 'test/unit'
require_relative 'visibility_tests'
class TestFileUtilsDryRun < Test::Unit::TestCase
include FileUtils::DryRun
include TestFileUtilsIncVisibility
def setup
super
@fu_module = FileUtils::DryRun
end
end
|