rubinius/rubinius

View on GitHub
mspec/lib/mspec/runner/shared.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'mspec/runner/mspec'

class Object
  def it_behaves_like(desc, meth, obj=nil)
    send :before, :all do
      @method = meth
      @object = obj
    end

    send :it_should_behave_like, desc.to_s
  end
end