Skip to content

Instantly share code, notes, and snippets.

@madx
Created April 15, 2009 12:21
Show Gist options
  • Save madx/95737 to your computer and use it in GitHub Desktop.
Save madx/95737 to your computer and use it in GitHub Desktop.
def nothing
nil
end
if $0 == __FILE__
puts nothing
elsif $0 =~ /spec$/
describe "foo" do
it "should" do
nothing.should be_nil
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment