Remove duplicate test

This commit is contained in:
Stanko K.R.
2025-11-29 11:16:01 +01:00
parent 0ce46ddc36
commit 43bf226444
2 changed files with 0 additions and 17 deletions
View File
@@ -1,17 +0,0 @@
require "test_helper"
class Fizzy::Saas::SessionsControllerTest < ActionDispatch::IntegrationTest
test "create for a new user" do
untenanted do
assert_difference -> { Identity.count }, +1 do
assert_difference -> { MagicLink.count }, +1 do
post session_path,
params: { email_address: "nonexistent-#{SecureRandom.hex(6)}@example.com" }
end
end
assert_redirected_to session_magic_link_path
end
end
end