Created
February 2, 2009 06:57
-
-
Save adamhjk/56815 to your computer and use it in GitHub Desktop.
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
# Add this to spec/spec_helper.rb | |
module SimpleFromFile | |
def from_file(filename) | |
self.instance_eval(IO.read(filename), filename, 1) | |
end | |
end | |
# In your test begin() block | |
@ohai.extend(SimpleFromFile) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment