Add a captcha mock for tests
This commit is contained in:
parent
98e10c0d4f
commit
e8537208bd
2 changed files with 15 additions and 0 deletions
10
test/support/captcha_mock.ex
Normal file
10
test/support/captcha_mock.ex
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
defmodule Pleroma.Captcha.Mock do
|
||||
alias Pleroma.Captcha.Service
|
||||
@behaviour Service
|
||||
|
||||
@impl Service
|
||||
def new(), do: %{type: :mock}
|
||||
|
||||
@impl Service
|
||||
def validate(_token, _captcha), do: true
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue