From 6cc9a4b9f4dcfcac4d6206b0cce4f16d3efc8b59 Mon Sep 17 00:00:00 2001 From: John Warwick Date: Thu, 11 Jul 2013 09:57:47 -0400 Subject: [PATCH] Fixed doc typos in Mix.Tasks.Test --- lib/mix/lib/mix/tasks/test.ex | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/mix/lib/mix/tasks/test.ex b/lib/mix/lib/mix/tasks/test.ex index 0eed777799f..8aaf50b7d91 100644 --- a/lib/mix/lib/mix/tasks/test.ex +++ b/lib/mix/lib/mix/tasks/test.ex @@ -9,9 +9,9 @@ defmodule Mix.Tasks.Test do This task will preload the `test/test_helper.exs` which should do all testing setup and then require all files - that matches the given `test_pattern` in parallel. + that match the given `test_pattern` in parallel. - Before running tests, it invokes the prepare task + Before running tests, it invokes the `App.Start` task which defaults to compile and load your project. A list of files can be given after the task name in @@ -19,7 +19,7 @@ defmodule Mix.Tasks.Test do ## Command line options - * `--trace` - run tests with detailed reporting. Automatically set max cases to 1; + * `--trace` - run tests with detailed reporting. Automatically sets `max-cases` to 1; * `--max-cases` - set the maximum number of cases running async; * `--cover` - the directory to include coverage results; * `--force` - forces compilation regardless of module times; @@ -29,7 +29,7 @@ defmodule Mix.Tasks.Test do ## Configuration - * `:test_paths` - path containing tests. + * `:test_paths` - list of paths containing test files. Defaults to `["test"]`. * `:test_pattern` - a pattern to load test files. @@ -39,7 +39,7 @@ defmodule Mix.Tasks.Test do for testing. Defaults to `test/test_helper.exs`. * `:test_coverage` - the directory to include test coverage results. - Defaults to nil. + Defaults to `nil`. """