Created
July 30, 2011 02:16
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
def prepare_it | |
return yield | |
end | |
def method_1 | |
p :m1 | |
true | |
end | |
def method_2 | |
p :m2 | |
false | |
end | |
def method_3 | |
p :m3 | |
nil | |
end | |
done = prepare_it do | |
method_1 && method_2 && method_3 | |
end | |
puts "Something did not work" unless done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment