Sha256: 209ddc80d686afe135fb60115601b77d00a516d21a360e9af8b59df252b662fc
Contents?: true
Size: 335 Bytes
Versions: 64
Compression:
Stored size: 335 Bytes
Contents
require "test_helper" class RegistrationsControllerTest < ActionDispatch::IntegrationTest 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_response :created end end
Version data entries
64 entries across 64 versions & 1 rubygems