fix name in header; 27 failures

This commit is contained in:
danielgrippi 2011-12-25 23:45:38 -05:00 committed by Dennis Collinson
parent 039df8f879
commit 52183b8cc4
2 changed files with 2 additions and 1 deletions

View file

@ -71,7 +71,7 @@
<div class="avatar"> <div class="avatar">
<img alt="<%= current_user.name %>" class="avatar" data-person_id="<%= current_user.id %>" src="<%= current_user.avatar.small %>" title="Bob Grimm"> <img alt="<%= current_user.name %>" class="avatar" data-person_id="<%= current_user.id %>" src="<%= current_user.avatar.small %>" title="Bob Grimm">
</div> </div>
<a href="#" title="bob@localhost:3000">Bob Grimm</a> <a href="#"><%= current_user.name %></a>
</li> </li>
<li><a href="/people/<%= current_user.id %>">Profile</a></li> <li><a href="/people/<%= current_user.id %>">Profile</a></li>
<li><a href="/contacts">Contacts</a></li> <li><a href="/contacts">Contacts</a></li>

View file

@ -14,6 +14,7 @@ Feature: User manages contacts
Scenario: creating an aspect from homepage Scenario: creating an aspect from homepage
Given I am signed in Given I am signed in
And I go to the aspects page
When I follow "Add an aspect" When I follow "Add an aspect"
And I fill in "Name" with "losers" in the modal window And I fill in "Name" with "losers" in the modal window
And I press "Create" in the modal window And I press "Create" in the modal window