Ensured all tests use at least the DataCase module
This commit is contained in:
parent
b5d2ba4191
commit
c58c37d5c6
12 changed files with 12 additions and 12 deletions
|
|
@ -1,5 +1,5 @@
|
||||||
defmodule Pinchflat.Downloading.OutputPath.ParserTest do
|
defmodule Pinchflat.Downloading.OutputPath.ParserTest do
|
||||||
use ExUnit.Case, async: false
|
use Pinchflat.DataCase
|
||||||
|
|
||||||
alias Pinchflat.Downloading.OutputPath.Parser
|
alias Pinchflat.Downloading.OutputPath.Parser
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
defmodule Pinchflat.Lifecycle.Notifications.CommandRunnerTest do
|
defmodule Pinchflat.Lifecycle.Notifications.CommandRunnerTest do
|
||||||
use ExUnit.Case, async: false
|
use Pinchflat.DataCase
|
||||||
|
|
||||||
alias Pinchflat.Lifecycle.Notifications.CommandRunner, as: Runner
|
alias Pinchflat.Lifecycle.Notifications.CommandRunner, as: Runner
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
defmodule Pinchflat.Lifecycle.UserScripts.CommandRunnerTest do
|
defmodule Pinchflat.Lifecycle.UserScripts.CommandRunnerTest do
|
||||||
use ExUnit.Case, async: false
|
use Pinchflat.DataCase
|
||||||
|
|
||||||
alias Pinchflat.Utils.FilesystemUtils
|
alias Pinchflat.Utils.FilesystemUtils
|
||||||
alias Pinchflat.Lifecycle.UserScripts.CommandRunner, as: Runner
|
alias Pinchflat.Lifecycle.UserScripts.CommandRunner, as: Runner
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
defmodule Pinchflat.SlowIndexing.FileFollowerServerTest do
|
defmodule Pinchflat.SlowIndexing.FileFollowerServerTest do
|
||||||
use ExUnit.Case, async: false
|
use Pinchflat.DataCase
|
||||||
|
|
||||||
alias alias Pinchflat.Utils.FilesystemUtils
|
alias alias Pinchflat.Utils.FilesystemUtils
|
||||||
alias Pinchflat.SlowIndexing.FileFollowerServer
|
alias Pinchflat.SlowIndexing.FileFollowerServer
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
defmodule Pinchflat.Utils.ChangesetUtilsTest do
|
defmodule Pinchflat.Utils.ChangesetUtilsTest do
|
||||||
use ExUnit.Case, async: false
|
use Pinchflat.DataCase
|
||||||
|
|
||||||
defmodule MockSchema do
|
defmodule MockSchema do
|
||||||
use Ecto.Schema
|
use Ecto.Schema
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
defmodule Pinchflat.Utils.CliUtilsTest do
|
defmodule Pinchflat.Utils.CliUtilsTest do
|
||||||
use ExUnit.Case, async: false
|
use Pinchflat.DataCase
|
||||||
|
|
||||||
alias Pinchflat.Utils.CliUtils
|
alias Pinchflat.Utils.CliUtils
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
defmodule Pinchflat.Utils.DatetimeUtilsTest do
|
defmodule Pinchflat.Utils.DatetimeUtilsTest do
|
||||||
use ExUnit.Case, async: false
|
use Pinchflat.DataCase
|
||||||
|
|
||||||
alias Pinchflat.Utils.DatetimeUtils
|
alias Pinchflat.Utils.DatetimeUtils
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
defmodule Pinchflat.Utils.FunctionUtilsTest do
|
defmodule Pinchflat.Utils.FunctionUtilsTest do
|
||||||
use ExUnit.Case, async: false
|
use Pinchflat.DataCase
|
||||||
|
|
||||||
alias Pinchflat.Utils.FunctionUtils
|
alias Pinchflat.Utils.FunctionUtils
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
defmodule Pinchflat.Utils.NumberUtilsTest do
|
defmodule Pinchflat.Utils.NumberUtilsTest do
|
||||||
use ExUnit.Case, async: false
|
use Pinchflat.DataCase
|
||||||
|
|
||||||
alias Pinchflat.Utils.NumberUtils
|
alias Pinchflat.Utils.NumberUtils
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
defmodule Pinchflat.Utils.StringUtilsTest do
|
defmodule Pinchflat.Utils.StringUtilsTest do
|
||||||
use ExUnit.Case, async: false
|
use Pinchflat.DataCase
|
||||||
|
|
||||||
alias Pinchflat.Utils.StringUtils
|
alias Pinchflat.Utils.StringUtils
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
defmodule Pinchflat.Utils.XmlUtilsTest do
|
defmodule Pinchflat.Utils.XmlUtilsTest do
|
||||||
use ExUnit.Case, async: false
|
use Pinchflat.DataCase
|
||||||
|
|
||||||
alias Pinchflat.Utils.XmlUtils
|
alias Pinchflat.Utils.XmlUtils
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
defmodule Pinchflat.YtDlp.CommandRunnerTest do
|
defmodule Pinchflat.YtDlp.CommandRunnerTest do
|
||||||
use ExUnit.Case, async: false
|
use Pinchflat.DataCase
|
||||||
|
|
||||||
alias Pinchflat.Utils.FilesystemUtils
|
alias Pinchflat.Utils.FilesystemUtils
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue