Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions lib/saulabs/gauss/distribution.rb
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@ def +(other)
end

def ==(other)
return false unless other.kind_of?(self.class)
self.mean == other.mean && self.variance == other.variance
end

Expand Down
13 changes: 13 additions & 0 deletions spec/saulabs/gauss/distribution_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -188,3 +188,16 @@
end

end

describe Gauss::Distribution, "#==" do
let(:distribution) { Gauss::Distribution.with_deviation(25.0, 8.333333) }

it "should be reflexive" do
distribution.should == distribution
end

it "should not equal any object of another class" do
distribution.should_not == Object.new
end

end