Last active
August 29, 2015 14:23
-
-
Save mfpiccolo/501c2421a5a1d2fde940 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
#minitest/spec | |
# Drop SOLO in the name of the test you want to run and then run | |
# solo and tab complete the path/to/the/test/file.rb | |
solo() { | |
ruby -Itest $1 --name /SOLO/ | |
} | |
# describe SomeClass do | |
# it "does some stuff SOLO" do | |
# assert(true) | |
# end | |
# it "this one doesn't run" do | |
# assert(false) | |
# end | |
# end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment