Skip to content

Instantly share code, notes, and snippets.

@alexbrinkman
alexbrinkman / RSpec Cheat Sheet.md
Last active February 21, 2017 16:01
RSpec Cheat Sheet

Controller Tests

render_views # If called within a describe, context, or whole spec will allow to use: 
expect(response.body).to have_content "..."

Built-in matchers

Equivalence

@alexbrinkman
alexbrinkman / Capybara Cheat Sheet.md
Last active May 2, 2024 05:44
A List of Methods for Capybara

Navigating

visit "/projects"
visit post_comments_path(post)

Clicking links and buttons

click_link "id-of-link"
click_link "Link Text"