OXIESEC PANEL
- Current Dir:
/
/
usr
/
lib
/
ruby
/
vendor_ruby
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
02/10/2020 11:55:58 AM
rwxr-xr-x
📁
2.5.0
-
11/26/2019 12:32:04 PM
rwxr-xr-x
📁
did_you_mean
-
02/10/2020 11:55:58 AM
rwxr-xr-x
📄
did_you_mean.rb
1.21 KB
03/31/2018 05:00:01 PM
rw-r--r--
📁
hoe
-
02/10/2020 11:55:58 AM
rwxr-xr-x
📁
minitest
-
02/10/2020 11:55:58 AM
rwxr-xr-x
📄
minitest.rb
19.37 KB
07/26/2017 07:11:21 AM
rw-r--r--
📁
net
-
02/10/2020 11:55:58 AM
rwxr-xr-x
📄
net-telnet.rb
21 bytes
03/13/2016 02:22:26 PM
rw-r--r--
📁
power_assert
-
02/10/2020 11:55:58 AM
rwxr-xr-x
📄
power_assert.rb
10.54 KB
06/05/2016 11:15:04 AM
rw-r--r--
📁
rake
-
03/05/2020 06:33:15 AM
rwxr-xr-x
📄
rake.rb
2.11 KB
03/03/2020 01:44:04 PM
rw-r--r--
📁
rubygems
-
02/10/2020 11:55:58 AM
rwxr-xr-x
📁
test
-
02/10/2020 11:55:58 AM
rwxr-xr-x
📄
test-unit.rb
1.17 KB
07/04/2017 08:50:15 PM
rw-r--r--
Editing: test-unit.rb
Close
# Copyright (C) 2012-2015 Kouhei Sutou <kou@clear-code.com> # # License: Ruby's or LGPLv2.1 or later # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation; either # version 2.1 of the License, or (at your option) any later version. # # This library is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with this library; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA # 02110-1301 USA module Test module Unit autoload :TestCase, "test/unit/testcase" autoload :AutoRunner, "test/unit/autorunner" end end unless respond_to?(:run_test, true) # experimental. It is for "ruby -rtest-unit -e run_test test/test_*.rb". # Is this API OK or dirty? def run_test self.class.send(:undef_method, :run_test) require "test/unit" end end