UpdateCredentialsTest: Fix tests
This commit is contained in:
parent
6a738720ec
commit
d19f5d18e9
|
@ -4,13 +4,22 @@
|
||||||
|
|
||||||
defmodule Pleroma.Web.MastodonAPI.UpdateCredentialsTest do
|
defmodule Pleroma.Web.MastodonAPI.UpdateCredentialsTest do
|
||||||
alias Pleroma.Repo
|
alias Pleroma.Repo
|
||||||
|
alias Pleroma.UnstubbedConfigMock, as: ConfigMock
|
||||||
alias Pleroma.User
|
alias Pleroma.User
|
||||||
|
|
||||||
use Pleroma.Web.ConnCase
|
use Pleroma.Web.ConnCase
|
||||||
|
|
||||||
import Mock
|
import Mock
|
||||||
|
import Mox
|
||||||
import Pleroma.Factory
|
import Pleroma.Factory
|
||||||
|
|
||||||
|
setup do
|
||||||
|
ConfigMock
|
||||||
|
|> stub_with(Pleroma.Test.StaticConfig)
|
||||||
|
|
||||||
|
:ok
|
||||||
|
end
|
||||||
|
|
||||||
describe "updating credentials" do
|
describe "updating credentials" do
|
||||||
setup do: oauth_access(["write:accounts"])
|
setup do: oauth_access(["write:accounts"])
|
||||||
setup :request_content_type
|
setup :request_content_type
|
||||||
|
|
Loading…
Reference in New Issue