Skip to content

Instantly share code, notes, and snippets.

@MaryKuz
Created March 28, 2019 09:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MaryKuz/7a1789561a27ee5499994994d934a962 to your computer and use it in GitHub Desktop.
Save MaryKuz/7a1789561a27ee5499994994d934a962 to your computer and use it in GitHub Desktop.
Fix tests for actions
class Api::ProductsController < ApplicationController
private
def collection
@products ||= Product.all
end
def resource
@product ||= Product.find params[:id]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment