Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | `-p`, `--pattern` to run tests using a pattern. | Yves Senn | 2015-03-18 | 1 | -2/+1 |
| | |||||
* | use `bin/rails t` runner in `test_runner_test.rb`. | Yves Senn | 2015-03-18 | 1 | -24/+18 |
| | |||||
* | tests, use `capture` instead of custom `redirect_stderr` helper. | Yves Senn | 2015-01-30 | 1 | -12/+2 |
| | |||||
* | Add `test:jobs` task | yuuji.yaginuma | 2014-09-15 | 1 | -3/+14 |
| | |||||
* | Updates to make rails 4 happy with minitest 5: | Ryan Davis | 2013-05-06 | 1 | -10/+10 |
| | | | | | | | | | | + Namespace changes, overhaul of runners. + Internal ivar name changes - Removed a logger globally applied to tests that spew everywhere?!? + Override Minitest#__run to sort tests by name. + Reworked testing isolation to work with the new cleaner architecture. - Removed a bunch of tests that just test minitest straight up. I think these changes were all merged to minitest 4 a long time ago. - Minor report output differences. | ||||
* | add integration test for shorthand rake tests | Aaron Patterson | 2013-04-05 | 1 | -0/+7 |
| | |||||
* | extract test info from the command line and set up the test task | Aaron Patterson | 2013-04-05 | 1 | -1/+22 |
| | |||||
* | removing `rails test`, updating docs to show how to use `rake test` | Aaron Patterson | 2013-04-05 | 1 | -6/+0 |
| | |||||
* | do not blow away the test database on every run | Aaron Patterson | 2013-04-05 | 1 | -10/+0 |
| | |||||
* | switch the testing tests to use rake | Aaron Patterson | 2013-04-03 | 1 | -20/+23 |
| | |||||
* | apps that depend on active record should load fixtures | Aaron Patterson | 2013-04-03 | 1 | -7/+0 |
| | |||||
* | Replace assert_(no_)match args from regexps to strings to remove warnings | Carlos Antonio da Silva | 2013-03-11 | 1 | -40/+40 |
| | | | | | | Using regexps as arguments without parentheses end up raising: warning: ambiguous first argument; put parentheses or even spaces | ||||
* | Make sure that the test case is run under test env | Prem Sichanugrist | 2013-03-11 | 1 | -1/+17 |
| | | | | | | * Unset $RAILS_ENV that got set by abstract_unit to trigger the default. * split out environment setting since Ruby 1.9.3 doesn't support inline ENV setting. | ||||
* | Fix test failure introduced in 3ed41e57 | Prem Sichanugrist | 2013-03-11 | 1 | -5/+3 |
| | | | | I forgot to run the test suit after changing the task name. :bomb: | ||||
* | Make sure that `rails test` load test in test env | Prem Sichanugrist | 2013-03-09 | 1 | -1/+44 |
| | |||||
* | Improve wording for rails test command | Dalibor Nasevic | 2013-03-09 | 1 | -8/+8 |
| | |||||
* | Load fixtures only when running suites, or `-f` | Prem Sichanugrist | 2013-03-09 | 1 | -0/+51 |
| | | | | | | * `rails test -f` will run the test suites with all fixtures loaded * New application will now generated without `fixtures :all` line enabled by default. | ||||
* | Add support for MiniTest flags in TestRunner | Prem Sichanugrist | 2013-03-09 | 1 | -0/+21 |
| | | | | | Any flags that got set will be passed through to MiniTest::Unit.runner, such as `-n`, `-s-, and `-v`. | ||||
* | Add `rails test` command to run the test suite | Prem Sichanugrist and Chris Toomey | 2013-03-09 | 1 | -0/+183 |
To run the whole test suite: $ rails test To run the test file(s): $ rails test test/unit/foo_test.rb [test/unit/bar_test.rb ...] To run the test suite $ rails test [models,helpers,units,controllers,mailers,...] For more information, see `rails test --help`. This command will eventually replacing `rake test:*`, and `rake test` command will actually invoking `rails test` instead. |