@@ -25,7 +25,7 @@ defmodule Mix.CLITest do
2525 end
2626 """
2727 output = mix ""
28- assert File . regular? ( "_build/shared /lib/p/ebin/Elixir.A.beam" )
28+ assert File . regular? ( "_build/dev /lib/p/ebin/Elixir.A.beam" )
2929 assert output =~ "Compiled lib/a.ex"
3030 end
3131 end
@@ -51,27 +51,27 @@ defmodule Mix.CLITest do
5151 end
5252 end
5353
54- test "new with tests smoke test " do
54+ test "new with tests" do
5555 in_tmp "new_with_tests" , fn ->
5656 output = mix "new ."
5757 assert output =~ "* creating lib/new_with_tests.ex"
5858 assert output =~ "* creating lib/new_with_tests/supervisor.ex"
5959
6060 output = mix "test test/new_with_tests_test.exs --cover"
61- assert File . regular? ( "_build/shared /lib/new_with_tests/ebin/Elixir.NewWithTests.beam" )
61+ assert File . regular? ( "_build/test /lib/new_with_tests/ebin/Elixir.NewWithTests.beam" )
6262 assert output =~ "1 tests, 0 failures"
6363 assert output =~ "Generating cover results ..."
6464 assert File . regular? ( "cover/Elixir.NewWithTests.html" )
6565 end
6666 end
6767
68- test "new --bare with tests smoke test " do
68+ test "new --bare with tests" do
6969 in_tmp "new_with_tests" , fn ->
7070 output = mix "new --bare ."
7171 assert output =~ "* creating lib/new_with_tests.ex"
7272
7373 output = mix "test"
74- assert File . regular? ( "_build/shared /lib/new_with_tests/ebin/Elixir.NewWithTests.beam" )
74+ assert File . regular? ( "_build/test /lib/new_with_tests/ebin/Elixir.NewWithTests.beam" )
7575 assert output =~ "1 tests, 0 failures"
7676 end
7777 end
0 commit comments