Skip to content

Instantly share code, notes, and snippets.

@sergii
Forked from geoffharcourt/feature_spec.rb
Created July 28, 2021 16:47
Show Gist options
  • Save sergii/6806349bb7d55f45c7c69a9f8f0bef02 to your computer and use it in GitHub Desktop.
Save sergii/6806349bb7d55f45c7c69a9f8f0bef02 to your computer and use it in GitHub Desktop.
require "rails_helper"
feature "User signs up" do
scenario "and is added to the roster" do
visit root_path
fill_in "Name", with: "Mickey Mouse"
fill_in "Experience", with: "Junior"
click_button "Sign Me Up!"
expect(page).to have_text("Mickey Mouse")
expect(page).to have_text("Junior")
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment