spec/lib/maven_runner_spec.rb in gjp-0.17.1 vs spec/lib/maven_runner_spec.rb in gjp-0.18.0

- old
+ new

@@ -57,17 +57,14 @@ end end end def mock_maven_executable - @project.gather Dir.chdir(@project_path) do @bin_dir = File.join("kit", "mvn", "bin") FileUtils.mkdir_p(@bin_dir) @maven_executable = File.join(@bin_dir, "mvn") File.open(@maven_executable, "w") { |io| io.puts "echo $0 $*>test_out" } File.chmod(0777, @maven_executable) end - - @project.finish end end