Commit 3fefe6be8b3daa46a1e353fdc236217aebd7e82f

Authored by Diego Camarinha
Committed by Paulo Meireles
1 parent 0e2b4188

Adding a new acceptance test

Showing 1 changed file with 15 additions and 0 deletions   Show diff stats
plugins/mezuro/features/mezuro.feature
... ... @@ -59,6 +59,21 @@ Feature: mezuro content
59 59 And I press "Save"
60 60 Then I should see "Qt-Calculator"
61 61  
  62 + Scenario: I see results from a real Kalibro project
  63 + Given I am on My Community's cms
  64 + And I follow "New content"
  65 + And I follow "Kalibro project"
  66 + And I fill in the following:
  67 + | Title | Qt-Calculator |
  68 + | License | GPL |
  69 + | Repository type | SUBVERSION |
  70 + | Repository url | https://qt-calculator.svn.sourceforge.net/svnroot/qt-calculator |
  71 + And I press "Save"
  72 + Then I should see "Qt-Calculator"
  73 + And I should see "GPL"
  74 + And I should see "SUBVERSION"
  75 + And I should see "https://qt-calculator.svn.sourceforge.net/svnroot/qt-calculator"
  76 +
62 77 @selenium
63 78 Scenario: I delete a real mezuro content
64 79 Given I am on My Community's cms
... ...