debian-mirror-gitlab/ruby-statistics/lib/statistics/statistical_test.rb

12 lines
300 B
Ruby
Raw Normal View History

2019-10-03 23:17:56 +05:30
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