Skip to content

Instantly share code, notes, and snippets.

@azisaka
Created October 21, 2010 23:46
Show Gist options
  • Save azisaka/639629 to your computer and use it in GitHub Desktop.
Save azisaka/639629 to your computer and use it in GitHub Desktop.
RSpec.configure do |config|
config.filter_run :focus => true
end
describe "something" :focus => true do
...
end
describe "another thing" do
it "should be testable" do
...
end
it "should be focused", :focus => true do
...
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment