Sha256: e11b75d6c3ce7e393e910b8b440b61b35d84a8b76bcde4143d382a73b949e70e
Contents?: true
Size: 547 Bytes
Versions: 3
Compression:
Stored size: 547 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(:salt).of_type(:string) } it { should have_db_column(:version).of_type(:string) } it { should have_db_column(:param).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
3 entries across 3 versions & 1 rubygems