forked from AkkomaGang/akkoma
Fixed formatting and test
This commit is contained in:
parent
5bfb7b4ce6
commit
98b36d359a
2 changed files with 3 additions and 8 deletions
|
@ -18,19 +18,14 @@ test "it adds attachment links to a given text and attachment set" do
|
|||
end
|
||||
|
||||
describe "it confirms the password given is the current users password" do
|
||||
test "with no credentials" do
|
||||
assert Utils.confirm_current_password(nil, %{"password" => "test"}) ==
|
||||
{:error, "Invalid credentials."}
|
||||
end
|
||||
|
||||
test "with incorrect password given" do
|
||||
test "incorrect password given" do
|
||||
{:ok, user} = UserBuilder.insert()
|
||||
|
||||
assert Utils.confirm_current_password(user, %{"password" => ""}) ==
|
||||
{:error, "Invalid password."}
|
||||
end
|
||||
|
||||
test "with correct password given" do
|
||||
test "correct password given" do
|
||||
{:ok, user} = UserBuilder.insert()
|
||||
assert Utils.confirm_current_password(user, %{"password" => "test"}) == {:ok, user}
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue