Sha256: bd6f503f26d46bf02000269a4415b1a9815ea81ccc808ae07db5db3515007e7c

Contents?: true

Size: 1.25 KB

Versions: 19

Compression:

Stored size: 1.25 KB

Contents

require File.dirname(File.join(__rhoGetCurrentDir(), __FILE__)) + '/../../spec_helper'
require File.dirname(File.join(__rhoGetCurrentDir(), __FILE__)) + '/fixtures/classes'

# sine : (-Inf, Inf) --> (-1.0, 1.0)
describe "Math.sin" do 
  it "returns a float" do 
    Math.sin(Math::PI).class.should == Float
  end 
  
  it "returns the sine of the argument expressed in radians" do    
    Math.sin(Math::PI).should be_close(0.0, TOLERANCE)
    Math.sin(0).should be_close(0.0, TOLERANCE)
    Math.sin(Math::PI/2).should be_close(1.0, TOLERANCE)    
    Math.sin(3*Math::PI/2).should be_close(-1.0, TOLERANCE)
    Math.sin(2*Math::PI).should be_close(0.0, TOLERANCE)
  end  
 
  it "raises an ArgumentError if the argument cannot be coerced with Float()" do    
    lambda { Math.sin("test") }.should raise_error(ArgumentError)
  end
  
  it "raises a TypeError if the argument is nil" do
    lambda { Math.sin(nil) }.should raise_error(TypeError)
  end  
  
  it "accepts any argument that can be coerced with Float()" do
    Math.sin(MathSpecs::Float.new).should be_close(0.841470984807897, TOLERANCE)
  end
end

describe "Math#sin" do
  it "is accessible as a private instance method" do
    IncludesMath.new.send(:sin, 1.21).should be_close(0.935616001553386, TOLERANCE)
  end
end

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
rhodes-2.0.0.beta11 spec/framework_spec/app/spec/core/math/sin_spec.rb
rhodes-2.0.0.beta10 spec/framework_spec/app/spec/core/math/sin_spec.rb
rhodes-2.0.0.beta9 spec/framework_spec/app/spec/core/math/sin_spec.rb
rhodes-2.0.0.beta8 spec/framework_spec/app/spec/core/math/sin_spec.rb
rhodes-2.0.0.beta7 spec/framework_spec/app/spec/core/math/sin_spec.rb
rhodes-2.0.0.beta6 spec/framework_spec/app/spec/core/math/sin_spec.rb
rhodes-2.0.0.beta4 spec/framework_spec/app/spec/core/math/sin_spec.rb
rhodes-2.0.0.beta3 spec/framework_spec/app/spec/core/math/sin_spec.rb
rhodes-1.5.5 spec/framework_spec/app/spec/core/math/sin_spec.rb
rhodes-2.0.0.beta2 spec/framework_spec/app/spec/core/math/sin_spec.rb
rhodes-2.0.0.beta1 spec/framework_spec/app/spec/core/math/sin_spec.rb
rhodes-1.5.4 spec/framework_spec/app/spec/core/math/sin_spec.rb
rhodes-1.5.3 spec/framework_spec/app/spec/core/math/sin_spec.rb
rhodes-1.5.2 spec/framework_spec/app/spec/core/math/sin_spec.rb
rhodes-1.5.1 spec/framework_spec/app/spec/core/math/sin_spec.rb
rhodes-1.5.0 spec/framework_spec/app/spec/core/math/sin_spec.rb
rhodes-1.4.2 spec/framework_spec/app/spec/core/math/sin_spec.rb
rhodes-1.4.1 spec/framework_spec/app/spec/core/math/sin_spec.rb
rhodes-1.4.0 spec/framework_spec/app/spec/core/math/sin_spec.rb