Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Cleanup Post model, no need to require fake_models | Carlos Antonio da Silva | 2012-01-18 | 1 | -17/+6 |
| | |||||
* | Do not mutate options hash | Carlos Antonio da Silva | 2012-01-18 | 1 | -0/+6 |
| | |||||
* | Cleanup persisted setup for model | Carlos Antonio da Silva | 2012-01-18 | 1 | -7/+7 |
| | |||||
* | Mimic AR models yielding when building new records, avoid using tap | Carlos Antonio da Silva | 2012-01-18 | 1 | -6/+8 |
| | |||||
* | No need for concat as well | Carlos Antonio da Silva | 2012-01-18 | 1 | -4/+4 |
| | |||||
* | Add test for content tag with prefix and extra html options | Carlos Antonio da Silva | 2012-01-18 | 1 | -4/+10 |
| | |||||
* | Merge pull request #4488 from rafaelfranca/av-refactor | Xavier Noria | 2012-01-17 | 1 | -0/+4 |
|\ | | | | | ActionView::Helpers::FormHelper refactoring | ||||
| * | Adding one test case for label with block | Rafael Mendonça França | 2012-01-17 | 1 | -0/+4 |
| | | |||||
* | | Bring back rendering templates that start with / in nested structures | Carlos Antonio da Silva | 2012-01-17 | 1 | -0/+22 |
| | | |||||
* | | Remove deprecated default_charset= from AC::Base | Carlos Antonio da Silva | 2012-01-17 | 1 | -4/+4 |
| | | | | | | | | | | This should be set globally as a configuration, using `config.action_dispatch.default_charset` instead | ||||
* | | Move render_to_body logic to return a spaced string to AC::Rendering | Carlos Antonio da Silva | 2012-01-17 | 1 | -2/+0 |
| | | | | | | | | | | | | | | | | | | | | | | This seems to be required only when calling render :partial with an empty collection from a controller. This call happens to return no content, letting the response body empty, which means to Rails that it should go on and try to find a template to render based on the current action name, thus failing hard. Although tests keep all green, we need to check a better way to fix this. | ||||
* | | Remove method missing handling when action is not found, use action missing ↵ | Carlos Antonio da Silva | 2012-01-17 | 1 | -45/+0 |
| | | | | | | | | | | | | | | instead Do not create a method_missing method to handle not found actions, use the action_missing method provided by Rails instead. | ||||
* | | Rename test class and fix tests to keep consistency | Carlos Antonio da Silva | 2012-01-17 | 1 | -10/+10 |
| | | | | | | | | Based on 50d23bc2bd3653b3c66e480c22ae97c5f7fd7f62. | ||||
* | | Remove deprecated logic to render templates starting with / | Carlos Antonio da Silva | 2012-01-17 | 1 | -22/+0 |
| | | | | | | | | render :template => "/foo/bar" | ||||
* | | Remove rescue_action from compatibility module and tests | Carlos Antonio da Silva | 2012-01-17 | 22 | -83/+7 |
| | | |||||
* | | Remove other old compatibility constants | Carlos Antonio da Silva | 2012-01-17 | 4 | -11/+11 |
| | | |||||
* | | Remove old compatibility methods not being used | Carlos Antonio da Silva | 2012-01-17 | 2 | -9/+0 |
|/ | |||||
* | Stub ip method of alternative request class | Sam Pohlenz | 2012-01-14 | 1 | -0/+4 |
| | |||||
* | Use a BodyProxy instead of including a Module that responds to close. | Santiago Pastorino | 2012-01-13 | 1 | -1/+12 |
| | | | | Closes #4441 if Active Record is disabled assets are delivered correctly | ||||
* | removed unnecessary test_pass test from form_tag_helper_test.rb | Karunakar (Ruby) | 2012-01-13 | 1 | -4/+0 |
| | |||||
* | Merge pull request #4429 from marcinbunsch/1923-force-ssl-redirect-keep-flash | José Valim | 2012-01-12 | 1 | -1/+37 |
|\ | | | | | When force redirecting to SSL, make sure that the session is kept | ||||
| * | When force redirecting to SSL, make sure that the session is kept. As we're ↵ | Marcin Bunsch and Przemek Dąbek | 2012-01-12 | 1 | -1/+37 |
| | | | | | | | | moving from a non-secure to secure environment, it's safe | ||||
* | | Handle leading spaces in protocol while sanitizing | Manu | 2012-01-12 | 1 | -1/+8 |
|/ | |||||
* | AC:TestCase::Behavior#head only accepts parameters as second argument | Rafael Mendonça França | 2012-01-10 | 1 | -0/+4 |
| | |||||
* | Whitespaces :scissors: | Rafael Mendonça França | 2012-01-10 | 1 | -4/+4 |
| | |||||
* | Fix ActionController::TestCase::Behavior.head | Rafael Mendonça França | 2012-01-10 | 1 | -0/+5 |
| | |||||
* | Merge pull request #4371 from rafaelfranca/test_unit_cleanup | Aaron Patterson | 2012-01-09 | 1 | -3/+5 |
|\ | | | | | Test unit cleanup | ||||
| * | Test constant is not defined anymore | Rafael Mendonça França | 2012-01-06 | 1 | -3/+5 |
| | | |||||
* | | instance_variables method returns symbols in 1.9 ruby | Sergey Nartimov | 2012-01-07 | 1 | -1/+1 |
| | | |||||
* | | get rid of using instance_variable_names method from AS | Sergey Nartimov | 2012-01-07 | 1 | -1/+1 |
| | | | | | | | | | | - instance_variables return symbols in 1.9 - there is instance_variable_defined? method | ||||
* | | Merge pull request #4369 from lest/remove-warnings | Piotr Sarnacki | 2012-01-07 | 1 | -2/+2 |
|\ \ | | | | | | | use stub instead of redefining method to suppress warnings | ||||
| * | | use stub instead of redefining method to suppress warnings | Sergey Nartimov | 2012-01-07 | 1 | -2/+2 |
| | | | |||||
* | | | add benchmark helper that works in erb | Sergey Nartimov | 2012-01-07 | 1 | -0/+24 |
| |/ |/| | |||||
* | | require minitest rather than test/unit | Aaron Patterson | 2012-01-06 | 2 | -2/+2 |
|/ | |||||
* | test response assertions | Aaron Patterson | 2012-01-06 | 1 | -0/+55 |
| | |||||
* | don't set the hidden checkbox value if it's nil | Damien Mathieu | 2012-01-06 | 1 | -0/+8 |
| | |||||
* | Do not stub id here | Santiago Pastorino | 2012-01-06 | 1 | -6/+6 |
| | |||||
* | Revert "Revert "More 1.9 way"" | Santiago Pastorino | 2012-01-06 | 1 | -0/+2 |
| | | | | | Fixed failing tests This reverts commit 8350ce97f2065eed9638c595d3938a573d6fa343. | ||||
* | Merge pull request #4342 from carlosantoniodasilva/fix-routing-test | José Valim | 2012-01-06 | 2 | -3/+3 |
|\ | | | | | Fix routing test and remove deprecated method | ||||
| * | Remove deprecation warning from test related to old process api | Carlos Antonio da Silva | 2012-01-06 | 1 | -1/+1 |
| | | |||||
| * | Fix routing test to use assert_equal | Carlos Antonio da Silva | 2012-01-06 | 1 | -2/+2 |
| | | |||||
* | | Add test path to LOAD_PATH to fix load error | Rafael Mendonça França | 2012-01-06 | 1 | -0/+1 |
|/ | |||||
* | AP tests should inherit from AS::TestCase | Aaron Patterson | 2012-01-05 | 18 | -22/+23 |
| | |||||
* | check_box helper with :disabled => true generates disabled hidden field. ↵ | Tadas Tamošauskas | 2012-01-05 | 1 | -4/+3 |
| | | | | fixes #1953 | ||||
* | Merge pull request #4333 from rafaelfranca/patch-1 | José Valim | 2012-01-05 | 1 | -2/+2 |
|\ | | | | | Change more Array.wrap calls | ||||
| * | Change more Array.wrap to Kernel#Array | Rafael Mendonça França | 2012-01-05 | 1 | -2/+2 |
| | | |||||
* | | remove obsolete commented asserts in TextHelper tests | Sergey Nartimov | 2012-01-06 | 1 | -6/+0 |
| | | |||||
* | | Moved all the logger methods to active support logger | Karunakar (Ruby) | 2012-01-06 | 7 | -8/+8 |
|/ | | | | minor | ||||
* | Merge pull request #4296 from kuroda/negative_format | Aaron Patterson | 2012-01-04 | 1 | -0/+7 |
|\ | | | | | Infer currency negative format from positive one. | ||||
| * | Infer currency negative format from positive one. | Tsutomu Kuroda | 2012-01-05 | 1 | -0/+7 |
| | | | | | | | | | | | | When a locale file sets the format of the positive currency value as '%n %u', the default negative currency format should be '-%n %u'. |