Sha256: 999e71ccb2148e2877c9093c56f6a82732d30b73a92a55e73f95f7cf952bdcec
Contents?: true
Size: 506 Bytes
Versions: 2
Compression:
Stored size: 506 Bytes
Contents
# -*- coding: utf-8 -*- require 'spec_helper' describe BigbluebuttonPlaybackFormat do it "loaded correctly" do BigbluebuttonPlaybackFormat.new.should be_a_kind_of(ActiveRecord::Base) end before { FactoryGirl.create(:bigbluebutton_playback_format) } it { should belong_to(:recording) } it { should validate_presence_of(:recording_id) } it { should validate_presence_of(:format_type) } it { should_not validate_presence_of(:url) } it { should_not validate_presence_of(:length) } end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
bigbluebutton_rails-1.4.0 | spec/models/bigbluebutton_playback_format_spec.rb |
bigbluebutton_rails-1.4.0.beta1 | spec/models/bigbluebutton_playback_format_spec.rb |