Created
April 29, 2010 16:48
-
-
Save manlycode/383870 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
# at the bottom of your spec helper | |
def tag_as_integration | |
unless ENV['INTEGRATION'] == 'true' | |
pending | |
end | |
end | |
# at the top level describe of a spec you want to exclude from normal execution | |
before do | |
tag_as_integration | |
end | |
#to run it | |
#>INTEGRATION=true rake spec |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment