Sha256: 7171590b50ad937a6038d5257a9f13423acf3bcc9b1c40525ed991295875a5a9

Contents?: true

Size: 1.27 KB

Versions: 17

Compression:

Stored size: 1.27 KB

Contents

require "spec_helper"

module MethodMissingSpecs
  class A
    def method_missing(mid, *args)
      [mid, args]
    end
  end

  class B
    def method_missing(mid, *args, &block)
      [mid, block]
    end
  end
end

class BridgedClass < `(function NativeConstructor(){})`
end

describe "method_missing" do
  before do
    @obj = MethodMissingSpecs::A.new
  end

  it "should pass the missing method name as first argument" do
    @obj.foo.should == [:foo, []]
  end

  it "should correctly pass arguments to method_missing" do
    @obj.bar(1, 2, 3).should == [:bar, [1, 2, 3]]
  end

  it "should pass blocks to method_missing" do
    obj = MethodMissingSpecs::B.new
    proc = proc { 1 }
    obj.baz(1, 2, &proc).should == [:baz, proc]
  end
end

describe "BasicObject#method_missing" do
  it "raises an error for the missing method" do
    lambda {
      BasicObject.new.foo_bar_baz
    }.should raise_error(Exception)
  end
end

describe "Array#method_missing" do
  it "raises an error for the missing method" do
    lambda {
      BasicObject.new.foo_bar_baz
    }.should raise_error(Exception)
  end
end

describe "<BridgedClass>#method_missing" do
  it "raises an error for the missing method" do
    lambda {
      BridgedClass.new.foo_bar_baz
    }.should raise_error(Exception)
  end
end

Version data entries

17 entries across 17 versions & 3 rubygems

Version Path
opal-0.8.1 spec/opal/core/runtime/method_missing_spec.rb
opal-0.8.1.rc1 spec/opal/core/runtime/method_missing_spec.rb
opal-wedge-0.9.0.dev spec/opal/core/runtime/method_missing_spec.rb
opal-0.8.0 spec/opal/core/runtime/method_missing_spec.rb
opal-0.8.0.rc3 spec/opal/core/runtime/method_missing_spec.rb
opal-0.8.0.rc2 spec/opal/core/runtime/method_missing_spec.rb
opal-0.8.0.rc1 spec/opal/core/runtime/method_missing_spec.rb
opal-0.8.0.beta1 spec/opal/core/runtime/method_missing_spec.rb
opal-0.7.2 spec/opal/core/runtime/method_missing_spec.rb
opal-0.7.1 spec/opal/core/runtime/method_missing_spec.rb
opal-0.7.0 spec/opal/core/runtime/method_missing_spec.rb
opal-0.7.0.rc1 spec/opal/core/runtime/method_missing_spec.rb
opal-0.7.0.beta3 spec/opal/core/runtime/method_missing_spec.rb
opal-0.7.0.beta2 spec/opal/core/runtime/method_missing_spec.rb
opal-cj-0.7.0.beta2 spec/opal/core/runtime/method_missing_spec.rb
opal-cj-0.7.0.beta1 spec/opal/core/runtime/method_missing_spec.rb
opal-0.7.0.beta1 spec/opal/core/runtime/method_missing_spec.rb