Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.112
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
ruby /
vendor_ruby /
minitest /
Delete
Unzip
Name
Size
Permission
Date
Action
assertions.rb
17.7
KB
-rwxrwxrwx
2016-06-02 00:41
autorun.rb
127
B
-rwxrwxrwx
2016-06-02 00:41
benchmark.rb
11.22
KB
-rwxrwxrwx
2016-06-02 00:41
expectations.rb
5.75
KB
-rwxrwxrwx
2016-06-02 00:41
hell.rb
250
B
-rwxrwxrwx
2016-06-02 00:41
mock.rb
6.4
KB
-rwxrwxrwx
2016-06-02 00:41
parallel.rb
1.48
KB
-rwxrwxrwx
2016-06-02 00:41
pride.rb
67
B
-rwxrwxrwx
2016-06-02 00:41
pride_plugin.rb
3.08
KB
-rwxrwxrwx
2016-06-02 00:41
spec.rb
8.47
KB
-rwxrwxrwx
2016-06-02 00:41
test.rb
6.7
KB
-rwxrwxrwx
2016-06-02 00:41
unit.rb
1.23
KB
-rwxrwxrwx
2016-06-02 00:41
Save
Rename
# :stopdoc: unless defined?(Minitest) then # all of this crap is just to avoid circular requires and is only # needed if a user requires "minitest/unit" directly instead of # "minitest/autorun", so we also warn from = caller.reject { |s| s =~ /rubygems/ }.join("\n ") warn "Warning: you should require 'minitest/autorun' instead." warn %(Warning: or add 'gem "minitest"' before 'require "minitest/autorun"') warn "From:\n #{from}" module Minitest; end MiniTest = Minitest # prevents minitest.rb from requiring back to us require "minitest" end MiniTest = Minitest unless defined?(MiniTest) module Minitest class Unit VERSION = Minitest::VERSION class TestCase < Minitest::Test def self.inherited klass # :nodoc: from = caller.first warn "MiniTest::Unit::TestCase is now Minitest::Test. From #{from}" super end end def self.autorun # :nodoc: from = caller.first warn "MiniTest::Unit.autorun is now Minitest.autorun. From #{from}" Minitest.autorun end def self.after_tests(&b) # :nodoc: from = caller.first warn "MiniTest::Unit.after_tests is now Minitest.after_run. From #{from}" Minitest.after_run(&b) end end end # :startdoc: