Does anyone know how to make assert_select not output all those nasty html warnings during a rake test? You know, like this stuff:
.ignoring attempt to close body with div
opened at byte 1036, line 5
closed at byte 5342, line 42
attributes at open: {"class"=>"inner02"}
text around open: "</script>\r\t</head>\r\t<body class=\"inner02"
text around close: "\t</div>\r\t\t\t</div>\r\t\t</div>\r\t</body>\r</ht"
Thanks
<=and=>I was using in some javascript in the view (<script> if (something >= 1) {return 1;} </script>). The solution was to surround the script with a CDATA tag (<script>//<![CDATA[ if (something >= 1) {return 1;} //]]></script>). See this SO answer for more details: stackoverflow.com/questions/66837/… – SooDesuNe Jun 10 '12 at 20:53