Don't Do What Johnny Don't Does
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class FiatNil | |
def method_missing(*args) | |
nil | |
end | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require_relative 'fiat_nil' | |
describe "FiatNil" do | |
it "should fail silently, horribly" do | |
nil.strip.should be_nil | |
end | |
it "said, let there be nil. and it was bad" do | |
nil.all.the.way.down.should be_nil | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment