Sha256: 71070127f4117180cfe5c317d46ad11916a4c0bc163521f8427715049a66e359

Contents?: true

Size: 691 Bytes

Versions: 3

Compression:

Stored size: 691 Bytes

Contents

<!DOCTYPE>
<html>
  <head>
    <title>Teabag :: Javascript Test Runner</title>
    <%= stylesheet_link_tag *@suite.stylesheets %>
    <%= javascript_include_tag_for_teabag *@suite.javascripts %>
    <%= csrf_meta_tags %>
    <script type="text/javascript">
      window.originalOnload = window.onload
      window.onload = function() {
        if (window.originalOnload) window.originalOnload();

        // start the execution of the specs
        Teabag.version = "<%= Teabag::VERSION %>";
        Teabag.fixturePath = "<%= Teabag.configuration.mount_at %>/fixtures";
        Teabag.execute()
      }
    </script>
  </head>
  <body>
    <div id="teabag-fixtures"></div>
  </body>
</html>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
teabag-0.4.0 app/views/teabag/spec/index.html.erb
teabag-0.3.6 app/views/teabag/spec/index.html.erb
teabag-0.3.5 app/views/teabag/spec/index.html.erb