Sha256: e64e5923c6fc0568abfce365912de7a9a77895752dffdc181c286c988fdc632b
Contents?: true
Size: 423 Bytes
Versions: 64
Compression:
Stored size: 423 Bytes
Contents
require "test_helper" class RegistrationsControllerTest < ActionDispatch::IntegrationTest test "should get new" do get sign_up_url assert_response :success end test "should sign up" do assert_difference("User.count") do post sign_up_url, params: { email: "lazaronixon@hey.com", password: "Secret1*3*5*", password_confirmation: "Secret1*3*5*" } end assert_redirected_to root_url end end
Version data entries
64 entries across 64 versions & 1 rubygems