1..68 # _compute_public_path ok 1 - _compute_public_path() converts a string to a web path ok 2 - _compute_public_path() can create absolute links ok 3 - _compute_public_path() does not add suffix if one already exists ok 4 - _compute_public_path() takes into account the relative url root configuration ok 5 - _compute_public_path() takes into account query strings ok 6 - _compute_public_path() takes into account query strings # image_tag() ok 7 - image_tag() returns nothing when called without arguments ok 8 - image_tag() takes an image name as its first argument ok 9 - image_tag() can take an image name with an extension ok 10 - image_tag() can take an absolute image path ok 11 - image_tag() can take an absolute image path without extension ok 12 - image_tag() can take an image name with an extension ok 13 - image_tag() takes an array of options as its second argument to override alt ok 14 - image_tag() takes a size option ok 15 - image_tag() can take an absolute parameter ok 16 - image_tag() takes whatever option you want ok 17 - image_tag() takes an array of options as its second argument to create alt and title ok 18 - image_tag() takes an array of options as its second argument to create alt and title # stylesheet_tag() ok 19 - stylesheet_tag() takes a stylesheet name as its first argument ok 20 - stylesheet_tag() can takes n stylesheet names as its arguments ok 21 - stylesheet_tag() can take a media option ok 22 - stylesheet_tag() can take an absolute option to output an absolute file name ok 23 - stylesheet_tag() can take a raw_name option to bypass file name decoration ok 24 - stylesheet_tag() can take a condition option # javascript_include_tag() ok 25 - javascript_include_tag() takes a javascript name as its first argument ok 26 - javascript_include_tag() can takes n javascript file names as its arguments ok 27 - javascript_include_tag() can take an absolute option to output an absolute file name ok 28 - javascript_include_tag() can take a raw_name option to bypass file name decoration ok 29 - javascript_include_tag() can take additional html options like defer ok 30 - javascript_include_tag() can take a condition option # javascript_path() ok 31 - javascript_path() decorates a relative filename with js dir name and extension ok 32 - javascript_path() does not decorate absolute file names with js dir name ok 33 - javascript_path() does not decorate file names with extension with .js ok 34 - javascript_path() accepts a second parameter to output an absolute resource path # stylesheet_path() ok 35 - stylesheet_path() decorates a relative filename with css dir name and extension ok 36 - stylesheet_path() does not decorate absolute file names with css dir name ok 37 - stylesheet_path() does not decorate file names with extension with .css ok 38 - stylesheet_path() accepts a second parameter to output an absolute resource path # image_path() ok 39 - image_path() decorates a relative filename with images dir name and png extension ok 40 - image_path() does not decorate absolute file names with images dir name ok 41 - image_path() does not decorate file names with extension with .png ok 42 - image_path() accepts a second parameter to output an absolute resource path # use_javascript() get_javascripts() ok 43 - get_javascripts() returns a javascript previously added by use_javascript() ok 44 - use_javascript() accepts an array of options as a third parameter ok 45 - use_javascript() accepts an array of options as a third parameter ok 46 - get_javascripts() returns all the javascripts previously added by use_javascript() # use_stylesheet() get_stylesheets() ok 47 - get_stylesheets() returns a stylesheet previously added by use_stylesheet() ok 48 - use_stylesheet() accepts an array of options as a third parameter ok 49 - use_stylesheet() accepts an array of options as a third parameter ok 50 - get_stylesheets() returns all the stylesheets previously added by use_stylesheet() # _dynamic_path() ok 51 - _dynamic_path() converts an internal URI to a URL ok 52 - _dynamic_path() converts an internal URI to a URL ok 53 - _dynamic_path() converts an internal URI to a URL # dynamic_javascript_include_tag() ok 54 - dynamic_javascript_include_tag() returns a tag relative to the given action ok 55 - dynamic_javascript_include_tag() takes an absolute boolean as its second argument ok 56 - dynamic_javascript_include_tag() takes an array of HTML attributes as its third argument # use_dynamic_javascript() ok 57 - use_dynamic_javascript() register a dynamic javascript in the response # use_dynamic_stylesheet() ok 58 - use_dynamic_stylesheet() register a dynamic stylesheet in the response # get_javascripts_for_form() get_stylesheets_for_form() ok 59 - get_javascripts_for_form() returns script tags ok 60 - get_stylesheets_for_form() returns link tags # use_javascripts_for_form() use_stylesheets_for_form() ok 61 - use_stylesheets_for_form() adds stylesheets to the response ok 62 - use_javascripts_for_form() adds javascripts to the response # Custom asset path handling ok 63 - javascript_path() decorates a relative filename with js dir name and extension with custom js dir ok 64 - javascript_include_tag() takes a javascript name as its first argument ok 65 - stylesheet_path() decorates a relative filename with css dir name and extension with custom css dir ok 66 - stylesheet_tag() takes a stylesheet name as its first argument ok 67 - image_path() decorates a relative filename with images dir name and png extension with custom images dir ok 68 - image_tag() takes an image name as its first argument # Looks like everything went fine.