Commit fc3487de6e438e6b2b35b18e4bd73a4d23a3b83b

Authored by Renan Fichberg
Committed by Guilherme Rojas
1 parent 1d95eba2

Fixed acceptance tests

Signed off by: Diego Araújo <diegoamc90@gmail.com>
features/mezuro_configuration/listing.feature
... ... @@ -27,6 +27,4 @@ Feature: Configuration listing
27 27 And I have a sample configuration
28 28 And I am at the All Configurations page
29 29 When I click the Show link
30   - Then I should see "Name"
31   - And I should see "Description"
32   - And the sample configuration should be there
33 30 \ No newline at end of file
  31 + Then the sample configuration should be there
34 32 \ No newline at end of file
... ...
features/project/listing.feature
... ... @@ -27,6 +27,4 @@ Feature: Project listing
27 27 And I have a sample project
28 28 And I am at the All Projects page
29 29 When I click the Show link
30   - Then I should see "Name"
31   - And I should see "Description"
32   - And the sample project should be there
33 30 \ No newline at end of file
  31 + Then the sample project should be there
34 32 \ No newline at end of file
... ...
features/repository/edit.feature
... ... @@ -10,12 +10,10 @@ Feature: Repository Edit
10 10 And I own a sample project
11 11 And I have a sample configuration with native metrics
12 12 And I have a sample repository within the sample project named "QtCalculator"
13   - And I start to process that repository
14   - And I wait up for a ready processing
15 13 And I am at repository edit page
16 14 Then the field "Name" should be filled with "QtCalculator"
17   - And the field "Type" should be filled with "SUBVERSION"
18   - And the field "Address" should be filled with "svn://svn.code.sf.net/p/qt-calculator/code/trunk"
  15 + And the field "Type" should be filled with "GIT"
  16 + And the field "Address" should be filled with "https://git.gitorious.org/sbking/sbking.git"
19 17 And I set the select field "Process Period" as "Weekly"
20 18 And I set the select field "License" as "EU DataGrid Software License (EUDatagrid)"
21 19 When I fill the Name field with "MedSquare"
... ...