Sha256: 93ccb4e0a5f68c75044c4adec1fd85ba93bdec3ea9adcadb68c583bce4f84f5f
Contents?: true
Size: 856 Bytes
Versions: 8
Compression:
Stored size: 856 Bytes
Contents
<% @page_title = test_suite_name @suite_path -%> <script type="text/javascript"> <!-- function openSuite(selector) { var suite = selector.options[selector.selectedIndex].value; if(suite == "header") return; if(top.location.href != location.href) //inside a frame top.location = "<%= url_for :action => :support_file %>/TestRunner.html?test=tests" + suite else window.location = "<%= url_for :action => :test_file, :testname => '' %>" + suite } //--> </script> <select onchange="openSuite(this)"> <option value="header">Suites:</option> <% for name, path in test_suites @suite_path -%> <option value="<%= path %>"><%= name%></option> <% end -%> </select> <table> <tr><th><%= @page_title %></th></tr> <% for name, path in test_cases @suite_path -%> <tr><td><%= link_to_test_case name, path %></td></tr> <% end -%> </table>
Version data entries
8 entries across 8 versions & 1 rubygems