Sha256: ad97dc06a5aa15207ae3e7d04f3388fc92e06ee1b99a2cbfa29b740f2d1a19b1

Contents?: true

Size: 1.17 KB

Versions: 3

Compression:

Stored size: 1.17 KB

Contents

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

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

  Scenario: Edit data in a BigBlueButton room
    Given an anonymous user
      And a real server
      And a room in this server
    When he goes to the edit room page
      And change the room name to "Anything different"
      And click in the button to save the room
    Then he should be at the show room URL
      And the room name should be "Anything different"

  Scenario: Try to edit data in a BigBlueButton room with incorrect values
    Given an anonymous user
      And a real server
      And a room in this server
    When he goes to the edit room page
      And change the room name to ""
      And click in the button to save the room
    Then he should be at the update room URL
      And see the edit room page
      And see 2 errors in the field "bigbluebutton_room[name]"
      And the room name should NOT be "Anything different"

Version data entries

3 entries across 3 versions & 1 rubygems

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