Sha256: 5cdb8f55c78a26628bc4c32f414c8e91d8db527775d29054da7619188ea6dc65

Contents?: true

Size: 668 Bytes

Versions: 5

Compression:

Stored size: 668 Bytes

Contents

require 'spec_helper'

describe BigbluebuttonRoomOptions do

  # to ensure that the migration is correct
  context "db" do
    it { should have_db_column(:room_id).of_type(:integer) }
    it { should have_db_column(:default_layout).of_type(:string) }
    it { should have_db_column(:created_at).of_type(:datetime) }
    it { should have_db_column(:updated_at).of_type(:datetime) }
    it { should have_db_column(:presenter_share_only).of_type(:boolean)}
    it { should have_db_column(:auto_start_video).of_type(:boolean) }
    it { should have_db_column(:auto_start_audio).of_type(:boolean) }
    it { should have_db_column(:background).of_type(:string) }
  end

end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
bigbluebutton_rails-3.0.0 spec/models/bigbluebutton_room_options_db_spec.rb
bigbluebutton_rails-2.3.0 spec/models/bigbluebutton_room_options_db_spec.rb
bigbluebutton_rails-2.2.0 spec/models/bigbluebutton_room_options_db_spec.rb
bigbluebutton_rails-2.1.0 spec/models/bigbluebutton_room_options_db_spec.rb
bigbluebutton_rails-2.0.0 spec/models/bigbluebutton_room_options_db_spec.rb