summaryrefslogtreecommitdiff
path: root/spec/ruby/core/numeric/zero_spec.rb
blob: 0fb7619bcdc3d8201cb9fe8e9b876ef9d270d904 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require_relative '../../spec_helper'
require_relative 'fixtures/classes'

describe "Numeric#zero?" do
  before :each do
    @obj = NumericSpecs::Subclass.new
  end

  it "returns true if self is 0" do
    @obj.should_receive(:==).with(0).and_return(true)
    @obj.should.zero?
  end

  it "returns false if self is not 0" do
    @obj.should_receive(:==).with(0).and_return(false)
    @obj.should_not.zero?
  end
end