File: statistical_test.rb

package info (click to toggle)
ruby-statistics 2.1.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 224 kB
  • sloc: ruby: 989; sh: 4; makefile: 4
file content (11 lines) | stat: -rw-r--r-- 300 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
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