aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/lib/action_view/testing
Commit message (Collapse)AuthorAgeFilesLines
* Silenced deprecation warnings in the tests. Documentation uses present ↵Timm2014-06-161-3/+4
| | | | tense. Changed deprecation message to not use you. Also returning from rescue block in catch_invalid_selector to abort reraising the exception.
* Added deprecation warning for invalid selectors and skipping assertions.Timm2014-06-161-5/+24
|
* Now only requiring Loofah in the places where it is needed.Timm2014-06-161-0/+2
|
* Stylistic improvements in ActionView::Assertions::DomAssertions.Timm2014-06-161-0/+4
|
* Removed dom_assertion method since it created bugs.Timm2014-06-161-8/+6
|
* Removed unnecessary documentation in DomAssertions.Timm2014-06-161-7/+0
|
* Removed case statement in equal_children? used child.element? instead.Timm2014-06-161-2/+1
|
* Reworked some internal documentation for equal_attribute_nodes?.Timm2014-06-161-3/+2
|
* Changed attributes_are_equal? to equal_attribute_nodes? which takes ↵Timm2014-06-161-7/+8
| | | | attribute_nodes instead of nodes.
* Removed html_strings variable, no splat operator needed.Timm2014-06-161-4/+4
|
* Changed back to =~ or == comparison in HTMLSelector filter.Timm2014-06-161-2/+2
|
* Extracted: create Regexp from match_with and use =~ to compare instead of ↵Timm2014-06-161-1/+2
| | | | checking .is_a? Regexp every time through the loop.
* Changed conditional check in filter. Removed weird comments.Timm2014-06-161-7/+3
|
* Moved: initial assignment of @selector_is_second_argument is now in initialize.Timm2014-06-161-1/+1
|
* Changed: using duck typing instead of requiring subclasses of Node and NodeSet.Timm2014-06-161-4/+1
|
* Renamed: HTMLSelector css_selector to selector.Timm2014-06-161-7/+7
|
* Removed unnecessary lines from HTMLSelector initialize.Timm2014-06-161-3/+1
|
* Changed: put selector extraction into selector_from, which is renamed to ↵Timm2014-06-161-4/+4
| | | | extract_selector.
* Changed: HTMLSelector comparisons renamed to equality_tests.Timm2014-06-161-9/+6
|
* Changed: removed @selected and @page variables from HTMLSelector since one ↵Timm2014-06-161-10/+8
| | | | method used them. Passed the values directly to there instead.
* Changed: return early from compare_doms if the two doms don't have the same ↵Timm2014-06-161-0/+2
| | | | number of children.
* Removed duplication in assert_dom_equal and assert_dom_not_equal.Timm2014-06-161-9/+6
|
* Changed wording of missing selector argument exception message in css_select.Timm2014-06-161-1/+1
|
* Reworked root and selector conditional assignment in css_select.Timm2014-06-161-5/+2
|
* Removed copyright notice since we aren't relying on html-scanner anymore.Timm2014-06-161-5/+0
|
* Removed require for active_support/core_ext/object/inclusion since in? isn't ↵Timm2014-06-161-2/+0
| | | | used anywhere.
* Moved Dom and Selector assertions from ActionDispatch to ActionView.Timm2014-06-163-0/+548
|
* Add variants to Template classŁukasz Strzałkowski2014-03-141-4/+8
|
* Action Pack VariantsŁukasz Strzałkowski2013-12-041-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | By default, variants in the templates will be picked up if a variant is set and there's a match. The format will be: app/views/projects/show.html.erb app/views/projects/show.html+tablet.erb app/views/projects/show.html+phone.erb If request.variant = :tablet is set, we'll automatically be rendering the html+tablet template. In the controller, we can also tailer to the variants with this syntax: class ProjectsController < ActionController::Base def show respond_to do |format| format.html do |html| @stars = @project.stars html.tablet { @notifications = @project.notifications } html.phone { @chat_heads = @project.chat_heads } end format.js format.atom end end end The variant itself is nil by default, but can be set in before filters, like so: class ApplicationController < ActionController::Base before_action do if request.user_agent =~ /iPad/ request.variant = :tablet end end end This is modeled loosely on custom mime types, but it's specifically not intended to be used together. If you're going to make a custom mime type, you don't need a variant. Variants are for variations on a single mime types.
* Move actionpack/lib/action_view* into actionview/libPiotr Sarnacki2013-06-201-0/+50