aboutsummaryrefslogtreecommitdiff
path: root/test/pleroma/mfa/totp_test.exs
diff options
context:
space:
mode:
Diffstat (limited to 'test/pleroma/mfa/totp_test.exs')
-rw-r--r--[-rwxr-xr-x]test/pleroma/mfa/totp_test.exs6
1 files changed, 5 insertions, 1 deletions
diff --git a/test/pleroma/mfa/totp_test.exs b/test/pleroma/mfa/totp_test.exs
index 56e4f48..f291ed1 100755..100644
--- a/test/pleroma/mfa/totp_test.exs
+++ b/test/pleroma/mfa/totp_test.exs
@@ -7,6 +7,8 @@ defmodule Pleroma.MFA.TOTPTest do
alias Pleroma.MFA.TOTP
+ import Pleroma.Tests.Helpers, only: [uri_equal?: 2]
+
test "create provisioning_uri to generate qrcode" do
uri =
TOTP.provisioning_uri("test-secrcet", "test@example.com",
@@ -15,7 +17,9 @@ defmodule Pleroma.MFA.TOTPTest do
period: 60
)
- assert uri ==
+ assert uri_equal?(
+ uri,
"otpauth://totp/test@example.com?digits=8&issuer=Plerome-42&period=60&secret=test-secrcet"
+ )
end
end