Sha256: d7203d23bf6a850f26a39e809a2560d84c1ae9fc6d3ea9f169003ca714d46f2a

Contents?: true

Size: 1.07 KB

Versions: 12

Compression:

Stored size: 1.07 KB

Contents

<h1 class="project-banner <%= @project.color %>" style="margin-bottom: 12px;">
  <small>Test for</small> <%= @project.name %>
</h1>

<div class="project-test-history">
  <h3><b><%= @test.suite %></b> <%= @test.name.to_s.gsub(/^(test :|: )/, "") %></h3>

  <dl class="project-test-totals">
    <dd><%= @totals.values.sum %></dd><dt>test runs</dt>
    <% @totals.each do |key, count| %>
      <dd><%= count %></dd><dt><%= key.pluralize %></dt>
    <% end %>
  </dl>

  <% if @exception %>
    <div class="alert alert-block alert-error">
      <h4>Invalid Commit</h4>
      <p><%= @exception.message %></p>
    </div>
  <% end %>

  <div class="timeline infinite-scroll">
    <p class="spinner"><i class="fa fa-spinner fa-spin fa-large"></i> Loading...</p>
    <%= render "commits" %>
  </div>
</div>

<% content_for :javascripts do %>
<script type="text/javascript">
$(function() {
  new InfiniteScroll({
    load: function($ol) {
      var sha = $ol.find('.project-test-commit:last').attr('data-sha');
      return $.get(window.location.pathname, {at: sha});
    }
  });
});
</script>
<% end %>

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
houston-core-0.8.0.pre app/views/project_tests/show.html.erb
houston-core-0.7.0 app/views/project_tests/show.html.erb
houston-core-0.7.0.beta4 app/views/project_tests/show.html.erb
houston-core-0.7.0.beta3 app/views/project_tests/show.html.erb
houston-core-0.7.0.beta2 app/views/project_tests/show.html.erb
houston-core-0.7.0.beta app/views/project_tests/show.html.erb
houston-core-0.6.3 app/views/project_tests/show.html.erb
houston-core-0.6.2 app/views/project_tests/show.html.erb
houston-core-0.6.1 app/views/project_tests/show.html.erb
houston-core-0.6.0 app/views/project_tests/show.html.erb
houston-core-0.5.6 app/views/project_tests/show.html.erb
houston-core-0.5.5 app/views/project_tests/index.html.erb