Created
April 9, 2011 15:27
-
-
Save samnang/911474 to your computer and use it in GitHub Desktop.
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
require "spec_helper" | |
describe "group 1" do | |
it "group 1 example 1" do | |
end | |
it "group 1 example 2" do | |
end | |
end | |
describe "group 2" do | |
it "group 2 example 1" do | |
end | |
end |
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
require "spec_helper" | |
describe "group 1" do | |
it "group 1 example 1", :focus => true do | |
end | |
it "group 1 example 2" do | |
end | |
end | |
describe "group 2" do | |
it "group 2 example 1" do | |
end | |
end |
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
# ... | |
RSpec.configure do |c| | |
c.filter_run :focus => true | |
c.run_all_when_everything_filtered = true | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment