Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save aaronmcadam/179114f43ebf29b6082a to your computer and use it in GitHub Desktop.
Save aaronmcadam/179114f43ebf29b6082a to your computer and use it in GitHub Desktop.
# From http://railscasts.com/episodes/287-presenters-from-scratch?view=comments
# I added spec/support/presenters.rb file and I require it from spec_helper.rb:
RSpec.configure do |config|
config.include ActionView::TestCase::Behavior, example_group: {file_path: %r{spec/presenters}}
config.include RSpec::Rails::Matchers::RenderTemplate, example_group: {file_path: %r{spec/presenters}}
end
# Example:
presenter.method.should render_template('blah/_blah')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment