Created
November 8, 2012 19:52
-
-
Save justinko/4041106 to your computer and use it in GitHub Desktop.
Do not make `describe` global
This file contains hidden or 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
describe |
This file contains hidden or 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 Spec | |
def describe | |
puts 'described' | |
end | |
end | |
Spec.new.instance_eval(IO.readlines('my_spec.rb').join) # => 'described' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment