diff --git a/test/support/project/.gitignore b/test/support/project/.gitignore deleted file mode 100644 index ba65b13af..000000000 --- a/test/support/project/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/_build/ diff --git a/test/support/project/lib/project.ex b/test/support/project/lib/project.ex deleted file mode 100644 index e139910be..000000000 --- a/test/support/project/lib/project.ex +++ /dev/null @@ -1,3 +0,0 @@ -defmodule Project do - def hello, do: "hello" -end diff --git a/test/support/project/mix.exs b/test/support/project/mix.exs deleted file mode 100644 index 5be74ba34..000000000 --- a/test/support/project/mix.exs +++ /dev/null @@ -1,19 +0,0 @@ -defmodule Project.MixProject do - use Mix.Project - - def project do - [ - app: :project, - version: "0.1.0", - elixir: "~> 1.11", - start_permanent: Mix.env() == :prod, - deps: [] - ] - end - - def application do - [ - extra_applications: [:logger] - ] - end -end