summaryrefslogtreecommitdiff
path: root/spec/ruby/core/basicobject/__send___spec.rb
blob: 005b1d0d9082defff80b0214b460e6a24eb99c98 (plain)
1
2
3
4
5
6
7
8
9
10
require_relative '../../spec_helper'
require_relative '../../shared/basicobject/send'

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