Commit 1d201125eac661a875cc4b4c024d8d9f518eb595

Authored by Rafael Manzo
1 parent ebdd98c3

Fixing project show and processing acceptance tests

app/views/projects/show.html.erb
... ... @@ -35,8 +35,7 @@
35 35 </td>
36 36 <td>
37 37 <%= link_to 'Show', project_repository_path(@project, repository.id), class: 'btn btn-info' %></td>
38   - </td>
39   - <% end %>
  38 + </td>
40 39 </tr>
41 40 <% end %>
42 41 </tbody>
... ...
features/repository/show.feature
... ... @@ -18,7 +18,7 @@ Feature: Show Repository
18 18 And I should see "Address"
19 19 And I should see "Configuration"
20 20 And I should see "State"
21   - And I should see "Date"
  21 + And I should see "Creation date"
22 22 And I should see "LOADING time"
23 23 And I should see "COLLECTING time"
24 24 And I should see "ANALYZING time"
... ... @@ -37,4 +37,4 @@ Feature: Show Repository
37 37 And I should see "Address"
38 38 And I should see "Configuration"
39 39 And I should see "State"
40   - And I should see "Date"
41 40 \ No newline at end of file
  41 + And I should see "Creation date"
42 42 \ No newline at end of file
... ...