aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* backport assert_not_sameAaron Patterson2012-01-061-0/+1
|
* require test/unit and sort test orderAaron Patterson2012-01-062-1/+7
|
* started converting AS::TestCase to minitestAaron Patterson2012-01-061-2/+12
|
* make sure the test case name is nilAaron Patterson2012-01-061-0/+8
|
* removing unnecessary requiresAaron Patterson2012-01-065-8/+3
|
* just mix the run method in for minitestAaron Patterson2012-01-061-14/+11
|
* rescue the assertion exceptionAaron Patterson2012-01-061-13/+8
|
* add the class name to the assertion messageAaron Patterson2012-01-061-1/+1
|
* use a regular expression for the number of passes. We only care thatAaron Patterson2012-01-061-1/+1
| | | | all tests pass, not the number of tests.
* Merge pull request #4349 from lest/change-array-wrap-2Jeremy Kemper2012-01-061-1/+1
|\ | | | | Array.wrap is an overhead as there is already check for class
| * Array.wrap is an overhead as there is already check for classSergey Nartimov2012-01-061-1/+1
| |
* | Merge pull request #4358 from castlerock/remove_plus_minus_support_for_ruby18Santiago Pastorino2012-01-061-23/+0
|\ \ | | | | | | revert "fixing some tests on ruby 1.9.3"
| * | revert "fixing some tests on ruby 1.9.3 SHA 33f222b"Vishnu Atrai2012-01-071-23/+0
| | |
* | | Merge pull request #4359 from Karunakar/loggerSantiago Pastorino2012-01-061-1/+0
|\ \ \ | | | | | | | | removed unnecessary require for activesupport/core_ext/array/wrap
| * | | removed unnecessary require for activesupport/core_ext/array/wrapKarunakar (Ruby)2012-01-071-1/+0
| | | |
* | | | convert build_message to sprintfAaron Patterson2012-01-061-9/+5
| | | |
* | | | use assert_equal and assert_operatorAaron Patterson2012-01-061-5/+8
| | | |
* | | | use sprintf rather than build_messageAaron Patterson2012-01-061-4/+6
| | | |
* | | | Just use assert_equalAaron Patterson2012-01-061-3/+2
| | | |
* | | | refactor assert_responseAaron Patterson2012-01-061-7/+10
| | | |
* | | | test response assertionsAaron Patterson2012-01-064-11/+56
| | | |
* | | | no need for assert_blockAaron Patterson2012-01-061-3/+3
| | | |
* | | | stop using build_message for creating a stringAaron Patterson2012-01-061-1/+1
| | | |
* | | | use assert_includes rather than calling includes? specificallyAaron Patterson2012-01-061-2/+2
| | | |
* | | | just use assert and refute rather than building messagesAaron Patterson2012-01-061-6/+2
|/ / /
* | | Merge pull request #4357 from rafaelfranca/patch-1Aaron Patterson2012-01-062-20/+1
|\ \ \ | |/ / |/| | Remove more references to Test::Unit
| * | Remove more references to Test::UnitRafael Mendonça França2012-01-062-20/+1
|/ /
* | Merge pull request #4356 from Karunakar/loggerSantiago Pastorino2012-01-061-1/+0
|\ \ | | | | | | removed unnessary require active_support/core_ext/array_wrap
| * | removed unnessary require active_support/core_ext/array_wrapKarunakar (Ruby)2012-01-061-1/+0
| | |
* | | Merge pull request #4327 from Karunakar/minorAaron Patterson2012-01-061-1/+1
|\ \ \ | |/ / |/| | removed warning because logger.warn differentiate the warings
| * | removed warning because logger.warn differentiate the waringsKarunakar (Ruby)2012-01-051-1/+1
| | |
* | | Merge pull request #4353 from dmathieu/hide_nil_unchecked_checkboxJosé Valim2012-01-062-1/+9
|\ \ \ | | | | | | | | don't set the hidden checkbox value if it's nil
| * | | don't set the hidden checkbox value if it's nilDamien Mathieu2012-01-062-1/+9
|/ / /
* | | Merge pull request #4354 from rafaelfranca/patch-1Aaron Patterson2012-01-063-212/+30
|\ \ \ | | | | | | | | Remove some checks if MiniTest is defined
| * | | No need to check if MiniTest::Assertions is definedRafael Mendonça França2012-01-061-32/+30
| | | |
| * | | Remove unneeded testsRafael Mendonça França2012-01-062-180/+0
|/ / /
* | | We should finalize the routes as soon as possible and not wait for the ↵José Valim2012-01-062-3/+1
| | | | | | | | | | | | controller to be loaded.
* | | Do not stub id hereSantiago Pastorino2012-01-061-6/+6
| | |
* | | Merge pull request #4351 from norman/multibyteJosé Valim2012-01-063-5/+32
|\ \ \ | | | | | | | | Implement #swapcase and #swapcase! for multibyte strings
| * | | Improve doc consistencyNorman Clarke2012-01-061-3/+3
| | | |
| * | | Implement Chars#swapcase.Norman Clarke2012-01-063-2/+29
| | |/ | |/|
* | | Merge pull request #4350 from kennyj/improve_3694José Valim2012-01-061-3/+3
|\ \ \ | | | | | | | | Don't fork a process when assets:precompile:nondigest is invoked in assets:precompile:all.
| * | | Don't fork a process when assets:precompile:nondigest is invoked in ↵kennyj2012-01-061-3/+3
|/ / / | | | | | | | | | assets:precompile:all. Improve GH #3694.
* | | Merge pull request #4348 from lest/change-array-wrapJosé Valim2012-01-061-2/+1
|\ \ \ | |/ / |/| | use Kernel#Array instead of Array.wrap in Rails::Generators::Actions
| * | use Kernel#Array instead of Array.wrap in Rails::Generators::ActionsSergey Nartimov2012-01-061-2/+1
|/ /
* | Revert "Revert "More 1.9 way""Santiago Pastorino2012-01-062-4/+4
| | | | | | | | | | Fixed failing tests This reverts commit 8350ce97f2065eed9638c595d3938a573d6fa343.
* | Merge pull request #4346 from pyromaniac/masterJosé Valim2012-01-062-2/+14
|\ \ | | | | | | Nil values uniquines validation
| * | Fixed nil field value uniqueness checkpyromaniac2012-01-062-2/+14
|/ /
* | Merge pull request #4342 from carlosantoniodasilva/fix-routing-testJosé Valim2012-01-063-5/+5
|\ \ | | | | | | Fix routing test and remove deprecated method
| * | Remove deprecation warning from test related to old process apiCarlos Antonio da Silva2012-01-061-1/+1
| | |