Skip to content

Instantly share code, notes, and snippets.

@shepmaster
Created January 30, 2013 23:11
Show Gist options
  • Save shepmaster/4678228 to your computer and use it in GitHub Desktop.
Save shepmaster/4678228 to your computer and use it in GitHub Desktop.
module CoolMixin
extend ActiveSupport::Concern
included do
before(:each) do
# Whatever
end
after(:all) do
# Whatever
end
end
end
# In spec_helper
RSpec.configure do |config|
config.include CoolMixin, :my_keyword => true
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment