summaryrefslogtreecommitdiff
path: root/spec/ruby/core/basicobject/__send___spec.rb
blob: 26543ba5d5ffe5b50bfeee71d9cb6e7c19c93b36 (plain)
1
2
3
4
5
6
7
8
9
10
require File.expand_path('../../../spec_helper', __FILE__)
require File.expand_path('../../../shared/basicobject/send', __FILE__)

describe "BasicObject#__send__" do
  it "is a public instance method" do
    BasicObject.should have_public_instance_method(:__send__)
  end

  it_behaves_like :basicobject_send, :__send__
end