debian-mirror-gitlab/ruby-statistics/lib/statistics/statistical_test.rb
2019-10-03 23:17:56 +05:30

11 lines
300 B
Ruby
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

Dir[File.dirname(__FILE__) + '/statistical_test/**/*.rb'].each {|file| require file }
module Statistics
module StatisticalTest
end
end
# If StatisticalTest is not defined, setup alias.
if defined?(Statistics) && !(defined?(StatisticalTest))
StatisticalTest = Statistics::StatisticalTest
end