Sha256: fc30218078f3ca275223a4f14a2f5c2f45032a5f306886861552f1c995c680f3

Contents?: true

Size: 548 Bytes

Versions: 1

Compression:

Stored size: 548 Bytes

Contents

require 'spec_helper'

describe BigbluebuttonServer do

  # to ensure that the migration is correct
  context "db" do
    it { should have_db_column(:name).of_type(:string) }
    it { should have_db_column(:url).of_type(:string) }
    it { should have_db_column(:secret).of_type(:string) }
    it { should have_db_column(:version).of_type(:string) }
    it { should have_db_column(:slug).of_type(:string) }
    it { should have_db_column(:created_at).of_type(:datetime) }
    it { should have_db_column(:updated_at).of_type(:datetime) }
  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
bigbluebutton_rails-3.0.0 spec/models/bigbluebutton_server_db_spec.rb