Skip to content

Instantly share code, notes, and snippets.

@balvig
Created April 24, 2019 06:57
Show Gist options
  • Save balvig/c2e1c2eea2d0dca4e8648486593c6687 to your computer and use it in GitHub Desktop.
Save balvig/c2e1c2eea2d0dca4e8648486593c6687 to your computer and use it in GitHub Desktop.
scenario "Viewing events" do
visitor = User.create!(name: "Visitor Name")
visitor.recipes.create!(title: "Featured Visitor Recipe")
- Recipe.create!(title: "Visited Recipe")
+ visited_recipe = Recipe.create!(title: "Visited Recipe")
+ Event.create!(visitor: visitor, recipe: visited_recipe, action: :liked)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment