Sha256: edef0bdd7329a65c42bda1fe0abadafa171d9975040aa1b1f5e4da8ab6863fad

Contents?: true

Size: 1.95 KB

Versions: 2

Compression:

Stored size: 1.95 KB

Contents

describe Ray::Rect do
  [:x, :y, :width, :height].each do |meth|
    describe "##{meth}=" do
      it "should set a new value to #{meth}" do
        rect = Ray::Rect.new(0, 0)
        lambda {
          rect.send("#{meth}=", 30)
        }.should change(rect, meth).from(0).to(30)
      end

      it "should only allow numerics" do
        rect = Ray::Rect.new(0, 0)

        ["1.0", "5.d", Ray, Ray::Rect, rect].each do |obj|
          lambda {
            rect.send("#{meth}=", obj)
          }.should raise_exception(TypeError)
        end
      end
    end
  end

  describe "#initialize" do
    context "with a hash" do
      it "should not allow to pass x but not y" do
        lambda {
          Ray::Rect.new(:x => 10)
        }.should raise_exception(ArgumentError)
      end

      it "should not allow to pass width but not height" do
        lambda {
          Ray::Rect.new(:x => 10, :y => 200, :width => 300)
        }.should raise_exception(ArgumentError)
      end

      it "should require x and y to be present" do
        lambda {
          Ray::Rect.new(:width => 400, :height => 300)
        }.should raise_exception(ArgumentError)
      end

      it "should only work with numerics" do
        ["1.0", "5.d", Ray, Ray::Rect].each do |obj|
          lambda {
            Ray::Rect.new(:x => obj, :y => 30)
          }.should raise_exception(TypeError)
        end
      end
    end

    context "with separated arguments" do
      it "should not work with one integer" do
        lambda {
          Ray::Rect.new(10)
        }.should raise_exception(ArgumentError)
      end

      it "should not work with 3 integers" do
        lambda {
          Ray::Rect.new(10, 30, 40)
        }.should raise_exception(ArgumentError)
      end

      it "should only work with numerics" do
        ["1.0", "5.d", Ray, Ray::Rect].each do |obj|
          lambda {
            Ray::Rect.new(obj, 30)
          }.should raise_exception(TypeError)
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ray-0.0.0.pre2 spec/ray/rect_spec.rb
ray-0.0.0.pre1 spec/ray/rect_spec.rb