Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Move abstract's controller tests to AV | Łukasz Strzałkowski | 2013-08-25 | 21 | -0/+917 |
| | | | | The ones that were actually testing AV functionality and should belong in there | ||||
* | Move actionpack's controller tests | Łukasz Strzałkowski | 2013-08-25 | 3 | -11/+11 |
| | |||||
* | Move AP's capture tests to AV | Łukasz Strzałkowski | 2013-08-25 | 1 | -0/+81 |
| | |||||
* | Move remaining layouts tests to AV | Łukasz Strzałkowski | 2013-08-25 | 17 | -0/+288 |
| | |||||
* | Split rendering tests between AP & AV | Łukasz Strzałkowski | 2013-08-25 | 1 | -248/+13 |
| | | | | All rendering test remain in AV. Head, ETag etc. test stay in AP | ||||
* | Move render_test to AV | Łukasz Strzałkowski | 2013-08-25 | 92 | -0/+1722 |
| | |||||
* | Do not load AV inside AP | Łukasz Strzałkowski | 2013-08-25 | 1 | -0/+1 |
| | | | | Move that part to AV railtie | ||||
* | Don not require AC::Caching | Łukasz Strzałkowski | 2013-08-25 | 1 | -1/+0 |
| | |||||
* | Remove ApplicationController & RoutingTestHelpers | Łukasz Strzałkowski | 2013-08-25 | 1 | -9/+0 |
| | |||||
* | Remove unused ActionDispatch::RoutingVerbs | Łukasz Strzałkowski | 2013-08-25 | 1 | -15/+1 |
| | |||||
* | Remove unused in AV fixture-controllers | Łukasz Strzałkowski | 2013-08-25 | 1 | -29/+0 |
| | |||||
* | Load AV::Layouts dynamicly via railties | Łukasz Strzałkowski | 2013-08-25 | 1 | -0/+2 |
| | |||||
* | Fix AV tests, I18nProxy was moved to AV | Łukasz Strzałkowski | 2013-08-25 | 1 | -1/+1 |
| | |||||
* | Move view_paths from AP to AV | Łukasz Strzałkowski | 2013-08-25 | 3 | -0/+176 |
| | |||||
* | Remove privatizing of Fixnum#/ from assert_distance_of_time_in_words | Alex Tambellini | 2013-08-05 | 1 | -5/+7 |
| | | | | | | | | MRI reimplemented Date in C so it doesn't hit this division anymore while JRuby still uses the old stdlib implementation of Date so it will always hit this. With this change the actionview date_helper_test.rb tests should pass on JRuby. | ||||
* | Merge pull request #11743 from gaurish/tmp-magic | Guillermo Iguaran | 2013-08-05 | 1 | -0/+0 |
|\ | | | | | [Jruby] Make all tests in ActionView::TemplateDigestorTest green | ||||
| * | Add tmp dir in actionview/test/ | Gaurish Sharma | 2013-08-05 | 1 | -0/+0 |
| | | | | | | | | | | | | | | | | Missing tmp directory will cause the test to fail on JRuby. will commit adds tmp directory & 22 TemplateDigestorTests which were failing before are now green. Further Discussion on this can be seen at #11743 | ||||
* | | Add "extname" option to javascript_include_tag | Nathan Stitt | 2013-08-03 | 1 | -0/+7 |
|/ | | | | | | | | | | | | ActionView::Helpers.asset_path is where the logic for javascript_include_tag resides. It takes an extname option for specifying the extension or false to not append it. This exposes that option to javascript_include_tag. Without the option files that didn't end with ".js" would get the extension appended to them. This broke JST templates and other file types that should be interpreted as JavaScript but who's file extension isn't ".js" | ||||
* | Make current_page? compare binary strings | Rafael Mendonça França | 2013-08-01 | 1 | -0/+8 |
| | |||||
* | Fix `current_page?` when the URL contains escaped characters | Rafael Mendonça França | 2013-08-01 | 1 | -0/+13 |
| | | | | | | | In some cases webservers like nginx send the escaped characters lowercased to the Rails application. The current_page? helper was comparing the escaped strings that are different since Ruby escapes the URL using uppercased characters. | ||||
* | text_area should handle nil value option like text_field | Joel Cogen | 2013-07-24 | 1 | -0/+7 |
| | |||||
* | add support for html attributes to grouped_options_for_select | Vasiliy Ermolovich | 2013-07-20 | 1 | -0/+10 |
| | |||||
* | Fix test name typos | Vipul A M | 2013-07-19 | 1 | -2/+2 |
| | |||||
* | Fix default rendered format problem when calling render method without ↵ | kennyj | 2013-07-15 | 1 | -0/+5 |
| | | | | :content_type option. Closes #11393. | ||||
* | Merge pull request #11348 from sanemat/fix/link-to-block | Rafael Mendonça França | 2013-07-07 | 1 | -0/+7 |
|\ | | | | | Fix actionview link_to with block and url_hash | ||||
| * | Fix link_to with block and url_hash | sanemat | 2013-07-07 | 1 | -0/+7 |
| | | | | | | | | | | | | Use link_to with block and url_hash, expect block as name. But ignore block and use url_hash as name. 3-2-stable passes this test. 4-0-stable and master fail this. | ||||
* | | Fix "Stack Level Too Deep" error when rendering recursive partials | Rafael Mendonça França | 2013-07-07 | 3 | -0/+27 |
| | | | | | | | | | | | | | | When rendering recursive partial Action View is trying to generate the view digest infinitly causing a stack level error. Fixes #11340 | ||||
* | | Added an `enforce_utf8` hash option for `form_tag` method | Takayuki Matsubara | 2013-07-07 | 1 | -1/+16 |
|/ | | | | | | | | | | | | | | | | | | Control to output a hidden input tag with name `utf8` without monkey patching Before: form_tag # => '<form>..<input name="utf8" type="hidden" value="✓" />..</form>' After: form_tag # => '<form>..<input name="utf8" type="hidden" value="✓" />..</form>' form_tag({}, { :enforce_utf8 => false }) # => '<form>....</form>' | ||||
* | Remove action view test duplication | sanemat | 2013-07-07 | 1 | -3/+0 |
| | | | | Same test exists above 2 or 3 lines. | ||||
* | Remove `FormBuilder` deprecation warning about block argument and associated ↵ | Vipul A M | 2013-07-02 | 1 | -12/+0 |
| | | | | tests | ||||
* | fetch value(s) from stringified options | Jon Rowe | 2013-06-29 | 1 | -0/+17 |
| | |||||
* | Remove passing the prompt to grouped_options_for_select as an argument, ↵ | kennyj | 2013-06-28 | 1 | -17/+0 |
| | | | | because it was deprecated. | ||||
* | Check if malformed fixture exists first | Łukasz Strzałkowski | 2013-06-20 | 1 | -0/+1 |
| | | | | Now if somebody by mistake will remove malformed files test will raise error. | ||||
* | Restore mistakenly removed malformed file fixtures | Łukasz Strzałkowski | 2013-06-20 | 5 | -0/+5 |
| | |||||
* | Fix digestor tests | Łukasz Strzałkowski | 2013-06-20 | 1 | -1/+2 |
| | |||||
* | Copy company test fixture to AV (fixes failing test) | Łukasz Strzałkowski | 2013-06-20 | 1 | -0/+9 |
| | |||||
* | Remove unneeded test fixtures in AV | Piotr Sarnacki | 2013-06-20 | 129 | -277/+0 |
| | |||||
* | Remove unneeded files | Piotr Sarnacki | 2013-06-20 | 5 | -38/+0 |
| | |||||
* | Move template tests from actionpack to actionview | Piotr Sarnacki | 2013-06-20 | 349 | -0/+17643 |