aniero (owner)

Revisions

gist: 43974 Download_button fork
public
Public Clone URL: git://gist.github.com/43974.git
Embed All Files: show embed
Text only #
1
2
3
4
5
6
7
8
9
10
11
require "ostruct"
 
describe "wtf" do
  it "fails" do
    o = OpenStruct.new :foo => "lol", :bar => "what"
    o.stub!(:gem)
    o.gem
    o.gem "foo"
  end
end