Skip to content

Commit

Permalink
Move sample module into test/support
Browse files Browse the repository at this point in the history
  • Loading branch information
felipesere committed Mar 20, 2016
1 parent bd5972a commit 0de0d6b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ defmodule Koans.Mixfile do
[app: :elixir_koans,
version: "0.0.1",
elixir: "~> 1.2",
elixirc_paths: elixirc_path(Mix.env),
deps: deps]
end

Expand All @@ -15,4 +16,7 @@ defmodule Koans.Mixfile do
defp deps do
[{:exfswatch, "~> 0.1.1"}]
end

defp elixirc_path(:test), do: ["lib/", "test/support"]
defp elixirc_path(_), do: ["lib/"]
end
File renamed without changes.

0 comments on commit 0de0d6b

Please sign in to comment.