File: weibull_spec.rb

package info (click to toggle)
ruby-distribution 0.8.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 624 kB
  • sloc: ruby: 4,535; makefile: 10
file content (17 lines) | stat: -rw-r--r-- 554 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require File.expand_path(File.dirname(__FILE__) + '/spec_helper.rb')

include ExampleWithGSL

describe Distribution::Weibull do
  # shared_examples for "Weibull engine" do
  it 'should return correct pdf' do
    expect(Distribution::Weibull.pdf(2, 1, 1)).to be_within(1e-3).of(0.13533)
  end
  it 'should return correct cdf' do
    expect(Distribution::Weibull.cdf(2, 1, 1)).to be_within(1e-3).of(0.86466)
  end
  it 'should return correct p-value' do
    expect(Distribution::Weibull.p_value(0.86466, 1, 1)).to be_within(1e-3).of(2.0)
  end
  # end
end