Guest User

Untitled

a guest
Jan 22nd, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. describe Blah do
  2. describe "#lol"
  3. it "should make lols" do
  4. end
  5.  
  6. it "should make it rain" do
  7. end
  8. end
  9. end
  10.  
  11. # Assuming "spec" is the name of the directory holding the specs
  12.  
  13. rspec -e "Blah#lol" spec # Runs all the #lol tests under Blah
  14. rspec -e "Blah#lol*rain" spec # Runs only the rain test
Add Comment
Please, Sign In to add comment