Sha256: 0f2a1c069a89a45525ff3c6f2c8bb367f97d327b5c89189148065450fa5382b0

Contents?: true

Size: 541 Bytes

Versions: 1

Compression:

Stored size: 541 Bytes

Contents

When /^clicks in the link to remove the first room$/i do
  # there's only 1 room created, so only 1 "Destroy" link
  click_link("Destroy")
end

When /^the removed room should not be listed$/i do
  BigbluebuttonRoom.find_by_id(@room.id).should be_nil

  # check params that are specific for this server
  doesnt_have_content(@room.meetingid)
  doesnt_have_content(@room.name)
  doesnt_have_content(@room.attendee_key)
  doesnt_have_content(@room.moderator_key)
  doesnt_have_content(@room.voice_bridge)
  doesnt_have_content(@room.slug)
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
bigbluebutton_rails-3.0.0 spec/rails_app/features/step_definitions/destroy_rooms_steps.rb