Kosmas/leaguer

View on GitHub
app/views/teams/index.html.erb

Summary

Maintainability
Test Coverage
<h2>Teams</h2>
<ul>
  <% @teams.each do |team| %>
    <li><%= link_to team.name, team %></li>
  <% end %>
</ul>

<%= link_to "New Team", new_team_path %>