File: modulo.rb

package info (click to toggle)
jruby 1.7.26-1%2Bdeb9u1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 84,572 kB
  • sloc: ruby: 669,910; java: 253,056; xml: 35,152; ansic: 9,187; yacc: 7,267; cpp: 5,244; sh: 1,036; makefile: 345; jsp: 48; tcl: 40
file content (51 lines) | stat: -rw-r--r-- 1,518 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
describe :float_modulo, :shared => true do
  it "returns self modulo other" do
    6543.21.send(@method, 137).should be_close(104.21, TOLERANCE)
    5667.19.send(@method, bignum_value).should be_close(5667.19, TOLERANCE)
    6543.21.send(@method, 137.24).should be_close(92.9299999999996, TOLERANCE)

    -1.0.send(@method, 1).should == 0
  end

  it "returns self when modulus is +Infinity" do
    4.2.send(@method, (1/0.0)).should == 4.2
  end

  it "returns -Infinity when modulus is -Infinity" do
    4.2.send(@method, (-1/0.0)).should == (-1/0.0)
  end

  it "returns NaN when called on NaN or Infinities" do
    (0/0.0).send(@method, 42).should be_nan
   (1/0.0).send(@method, 42).should be_nan
   (-1/0.0).send(@method, 42).should be_nan
  end

  it "returns NaN when modulus is NaN" do
    4.2.send(@method, (0/0.0)).should be_nan
  end

  it "returns -0.0 when called on -0.0 with a non zero modulus" do
    r = (-0.0).send(@method, 42)
    r.should == 0
    (1/r).should < 0

    r = (-0.0).send(@method, (1/0.0))
    r.should == 0
    (1/r).should < 0
  end

  ruby_version_is ""..."1.9" do
    it "does NOT raise ZeroDivisionError if other is zero" do
      1.0.send(@method, 0).should be_nan
      1.0.send(@method, 0.0).should be_nan
    end
  end

  ruby_version_is "1.9" do
    it "raises a ZeroDivisionError if other is zero" do
      lambda { 1.0.send(@method, 0) }.should raise_error(ZeroDivisionError)
      lambda { 1.0.send(@method, 0.0) }.should raise_error(ZeroDivisionError)
    end
  end
end