Class: ActionView::TestCase
Overview
Constant Summary
::ActiveSupport::TestCase - Inherited
Helpers::AssetUrlHelper - Included
ASSET_EXTENSIONS, ASSET_PUBLIC_DIRECTORIES, URI_REGEXP
Helpers::TagHelper - Included
ARIA_PREFIXES, BOOLEAN_ATTRIBUTES, DATA_PREFIXES, PRE_CONTENT_STRINGS, TAG_TYPES
Helpers::ContentExfiltrationPreventionHelper - Included
CLOSE_CDATA_COMMENT, CLOSE_FORM_TAG, CLOSE_OPTION_TAG, CLOSE_QUOTES_COMMENT, CONTENT_EXFILTRATION_PREVENTION_MARKUP
Helpers::DateHelper - Included
MINUTES_IN_QUARTER_YEAR, MINUTES_IN_THREE_QUARTERS_YEAR, MINUTES_IN_YEAR
Helpers::UrlHelper - Included
BUTTON_TAG_METHOD_VERBS, RFC2396_PARSER, STRINGIFIED_COMMON_METHODS
RecordIdentifier - Included
Helpers::JavaScriptHelper - Included
Helpers::TranslationHelper - Included
MISSING_TRANSLATION, NO_DEFAULT
Behavior - Included
Behavior - Attributes & Methods
Class Attribute Summary
::ActiveSupport::TestCase - Inherited
| .file_fixture_path, .file_fixture_path?, | |
| .test_order | Returns the order in which test cases are run. |
| .test_order= | Sets the order in which test cases are run. |
Class Method Summary
::ActiveSupport::TestCase - Inherited
| .fixture_paths | Returns the |
| .fixture_paths= | Sets the given path to the fixture set. |
| .parallelize | Parallelizes the test suite. |
| .parallelize_setup | Set up hook for parallel testing. |
| .parallelize_teardown | Clean up hook for parallel testing. |
::ActiveSupport::Testing::Declarative - Extended
Instance Attribute Summary
Behavior - Included
| #_helper_methods, #_helper_methods?, #controller, #lookup_context, #output_buffer, | |
| #rendered | Returns the content rendered by the last |
| #request | |
Helpers::TranslationHelper - Included
| #raise_on_missing_translations | Specify whether an error should be raised for missing translations. |
Helpers::FormHelper - Included
| #default_form_builder, #form_with_generates_ids, #form_with_generates_remote_forms, #multiple_file_field_include_hidden |
Helpers::FormTagHelper - Included
Helpers::SanitizeHelper - Included
Helpers::UrlHelper - Included
Helpers::ContentExfiltrationPreventionHelper - Included
Helpers::CacheHelper - Included
| #caching? | Returns whether the current view fragment is within a |
Helpers::AssetTagHelper - Included
Context - Included
::ActiveSupport::TestCase - Inherited
Instance Method Summary
Behavior - Included
| #_routes, #_user_defined_ivars, | |
| #_view | Alias for Behavior#view. |
| #config, #method_missing, #render, #rendered_views, #respond_to_missing?, #setup_with_controller, | |
| #view | The instance of |
| #view_assigns | Returns a |
RoutingUrlFor - Included
| #url_for | Returns the URL for the set of |
Helpers::TranslationHelper - Included
| #l | Alias for Helpers::TranslationHelper#localize. |
| #localize | Delegates to |
| #t | Alias for Helpers::TranslationHelper#translate. |
| #translate | Delegates to |
Helpers::RenderingHelper - Included
| #_layout_for | Overrides _layout_for in the context object so it supports the case a block is passed to a partial. |
| #render | Returns the result of a render that's dictated by the options hash. |
Helpers::NumberHelper - Included
Helpers::JavaScriptHelper - Included
| #escape_javascript | Escapes carriage returns and single and double quotes for JavaScript segments. |
| #j | Alias for Helpers::JavaScriptHelper#escape_javascript. |
| #javascript_tag | Returns a JavaScript tag with the |
Helpers::FormOptionsHelper - Included
| #collection_check_boxes | Returns check box tags for the collection of existing return values of |
| #collection_radio_buttons | Returns radio button tags for the collection of existing return values of |
| #collection_select | Returns and tags for the collection of existing return values of |
| #grouped_collection_select | Returns , and tags for the collection of existing return values of |
| #grouped_options_for_select | Returns a string of tags, like |
| #option_groups_from_collection_for_select | Returns a string of tags, like |
| #options_for_select | Accepts a container (hash, array, enumerable, your type) and returns a string of option tags. |
| #options_from_collection_for_select | Returns a string of option tags that have been compiled by iterating over the |
| #select | Create a select tag and a series of contained option tags for the provided object and method. |
| #time_zone_options_for_select | Returns a string of option tags for pretty much any time zone in the world. |
| #time_zone_select | Returns select and option tags for the given object and method, using |
| #weekday_options_for_select | Returns a string of option tags for the days of the week. |
| #weekday_select | Returns select and option tags for the given object and method, using |
Helpers::FormHelper - Included
| #check_box | Returns a checkbox tag tailored for accessing a specified attribute (identified by |
| #color_field | Returns a text_field of type "color". |
| #date_field | Returns a text_field of type "date". |
| #datetime_field | Returns a text_field of type "datetime-local". |
| #datetime_local_field | Alias for Helpers::FormHelper#datetime_field. |
| #email_field | Returns a text_field of type "email". |
| #fields | Scopes input fields with either an explicit scope or model. |
| #fields_for | Creates a scope around a specific model object like |
| #file_field | Returns a file upload input tag tailored for accessing a specified attribute (identified by |
| #form_for | Creates a form that allows the user to create or update the attributes of a specific model object. |
| #form_with | Creates a form tag based on mixing URLs, scopes, or models. |
| #hidden_field | Returns a hidden input tag tailored for accessing a specified attribute (identified by |
| #label | Returns a label tag tailored for labelling an input field for a specified attribute (identified by |
| #month_field | Returns a text_field of type "month". |
| #number_field | Returns an input tag of type "number". |
| #password_field | Returns an input tag of the "password" type tailored for accessing a specified attribute (identified by |
| #phone_field | Alias for Helpers::FormHelper#telephone_field. |
| #radio_button | Returns a radio button tag for accessing a specified attribute (identified by |
| #range_field | Returns an input tag of type "range". |
| #search_field | Returns an input of type "search" for accessing a specified attribute (identified by |
| #telephone_field | Returns a text_field of type "tel". |
| #text_area | Returns a textarea opening and closing tag set tailored for accessing a specified attribute (identified by |
| #text_field | Returns an input tag of the "text" type tailored for accessing a specified attribute (identified by |
| #time_field | Returns a text_field of type "time". |
| #url_field | Returns a text_field of type "url". |
| #week_field | Returns a text_field of type "week". |
RecordIdentifier - Included
| #dom_class | The DOM class convention is to use the singular form of an object or class. |
| #dom_id | The DOM id convention is to use the singular form of an object or class with the id following an underscore. |
| #record_key_for_dom_id | Returns a string representation of the key attribute(s) that is suitable for use in an HTML DOM id. |
Helpers::FormTagHelper - Included
| #button_tag | Creates a button element that defines a |
| #check_box_tag | Creates a check box form input tag. |
| #color_field_tag | Creates a text field of type "color". |
| #date_field_tag | Creates a text field of type "date". |
| #datetime_field_tag | Creates a text field of type "datetime-local". |
| #datetime_local_field_tag | Alias for Helpers::FormTagHelper#datetime_field_tag. |
| #email_field_tag | Creates a text field of type "email". |
| #field_id | Generate an HTML |
| #field_name | Generate an HTML |
| #field_set_tag | Creates a field set for grouping HTML form elements. |
| #fieldset_tag | Alias for Helpers::FormTagHelper#field_set_tag. |
| #file_field_tag | Creates a file upload field. |
| #form_tag | Starts a form tag that points the action to a URL configured with |
| #hidden_field_tag | Creates a hidden form input field used to transmit data that would be lost due to HTTP's statelessness or data that should be hidden from the user. |
| #image_submit_tag | Displays an image which when clicked will submit the form. |
| #label_tag | Creates a label element. |
| #month_field_tag | Creates a text field of type "month". |
| #number_field_tag | Creates a number field. |
| #password_field_tag | Creates a password field, a masked text field that will hide the users input behind a mask character. |
| #phone_field_tag | Alias for Helpers::FormTagHelper#telephone_field_tag. |
| #radio_button_tag | Creates a radio button; use groups of radio buttons named the same to allow users to select from a group of options. |
| #range_field_tag | Creates a range form element. |
| #search_field_tag | Creates a text field of type "search". |
| #select_tag | Creates a dropdown selection box, or if the :multiple option is set to true, a multiple choice selection box. |
| #submit_tag | Creates a submit button with the text |
| #telephone_field_tag | Creates a text field of type "tel". |
| #text_area_tag | Creates a text input area; use a textarea for longer text inputs such as blog posts or descriptions. |
| #text_field_tag | Creates a standard text field; use these text fields to input smaller chunks of text like a username or a search query. |
| #time_field_tag | Creates a text field of type "time". |
| #url_field_tag | Creates a text field of type "url". |
| #utf8_enforcer_tag | Creates the hidden UTF-8 enforcer tag. |
| #week_field_tag | Creates a text field of type "week". |
Helpers::TextHelper - Included
| #concat | The preferred method of outputting text in your views is to use the <%= "text" %> eRuby syntax. |
| #current_cycle | Returns the current cycle string after a cycle has been started. |
| #cycle | Creates a Cycle object whose |
| #excerpt | Extracts the first occurrence of |
| #highlight | Highlights occurrences of |
| #pluralize | Attempts to pluralize the |
| #reset_cycle | Resets a cycle so that it starts from the first element the next time it is called. |
| #safe_concat, | |
| #simple_format | Returns |
| #truncate | Truncates |
| #word_wrap | Wraps the |
Helpers::SanitizeHelper - Included
| #sanitize | Sanitizes HTML input, stripping all but known-safe tags and attributes. |
| #sanitize_css | Sanitizes a block of CSS code. |
| #strip_links | Strips all link tags from |
| #strip_tags | Strips all HTML tags from |
Helpers::UrlHelper - Included
| #button_to | Generates a form containing a single button that submits to the URL created by the set of |
| #current_page? | True if the current request URI was generated by the given |
| #link_to | Creates an anchor element of the given |
| #link_to_if | Creates a link tag of the given |
| #link_to_unless | Creates a link tag of the given |
| #link_to_unless_current | Creates a link tag of the given |
| #mail_to | Creates a mailto link tag to the specified |
| #phone_to | Creates a TEL anchor link tag to the specified |
| #sms_to | Creates an SMS anchor link tag to the specified |
Helpers::DebugHelper - Included
| #debug | Returns a YAML representation of . |
Helpers::DateHelper - Included
| #date_select | Returns a set of select tags (one for year, month, and day) pre-selected for accessing a specified date-based attribute (identified by |
| #datetime_select | Returns a set of select tags (one for year, month, day, hour, and minute) pre-selected for accessing a specified datetime-based attribute (identified by |
| #distance_of_time_in_words | Reports the approximate distance in time between two |
| #distance_of_time_in_words_to_now | Alias for Helpers::DateHelper#time_ago_in_words. |
| #select_date | Returns a set of HTML select-tags (one for year, month, and day) pre-selected with the |
| #select_datetime | Returns a set of HTML select-tags (one for year, month, day, hour, minute, and second) pre-selected with the |
| #select_day | Returns a select tag with options for each of the days 1 through 31 with the current day selected. |
| #select_hour | Returns a select tag with options for each of the hours 0 through 23 with the current hour selected. |
| #select_minute | Returns a select tag with options for each of the minutes 0 through 59 with the current minute selected. |
| #select_month | Returns a select tag with options for each of the months January through December with the current month selected. |
| #select_second | Returns a select tag with options for each of the seconds 0 through 59 with the current second selected. |
| #select_time | Returns a set of HTML select-tags (one for hour and minute). |
| #select_year | Returns a select tag with options for each of the five years on each side of the current, which is selected. |
| #time_ago_in_words | Like |
| #time_select | Returns a set of select tags (one for hour, minute, and optionally second) pre-selected for accessing a specified time-based attribute (identified by |
| #time_tag | Returns an HTML time tag for the given date or time. |
Helpers::CsrfHelper - Included
| #csrf_meta_tag | Alias for Helpers::CsrfHelper#csrf_meta_tags. |
| #csrf_meta_tags | Returns meta tags "csrf-param" and "csrf-token" with the name of the cross-site request forgery protection parameter and token, respectively. |
Helpers::CspHelper - Included
| #csp_meta_tag | Returns a meta tag "csp-nonce" with the per-session nonce value for allowing inline |