Sha256: 0a26aaa85f45b5d4d92fd71c56fed7d97ad8997b1dde06c853f834672a3a22a4

Contents?: true

Size: 1.13 KB

Versions: 3

Compression:

Stored size: 1.13 KB

Contents

Feature: Edit webconference servers
  To change the information of a webconference server
  One needs to be able to edit and update the server

  Scenario: Access the page to edit a server
    Given an anonymous user
      And a real server
    When he goes to the edit server page
    Then he should see the edit server page

  Scenario: Edit data in a server
    Given an anonymous user
      And a real server
    When he goes to the edit server page
      And change the server URL to "http://test.com/bigbluebutton/api"
      And click in the button to save the server
    Then he should be at the show server URL
      And the server URL should be "http://test.com/bigbluebutton/api"

  Scenario: Try to edit data in a server with incorrect values
    Given an anonymous user
      And a real server
    When he goes to the edit server page
      And change the server URL to "http://test.com/"
      And click in the button to save the server
    Then he should be at the update server URL
      And see the edit server page
      And see 1 errors in the field "bigbluebutton_server[url]"
      And the server URL should NOT be "http://test.com/"

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
bigbluebutton_rails-1.2.0 spec/rails_app/features/edit_servers.feature
bigbluebutton_rails-1.1.0 spec/rails_app/features/edit_servers.feature
bigbluebutton_rails-0.1.1 spec/rails_app/features/edit_servers.feature