timocratic (owner)

Revisions

gist: 69858 Download_button fork
public
Public Clone URL: git://gist.github.com/69858.git
rspec_in_t_u.rb
1
2
3
4
5
6
7
8
9
class RspecInTU
  class << self
    alias it define_method
  end
  it "should say hello" do
    puts "hello"
  end
end
RspecInTU.new.send "should say hello"