2018-05-07 16:47:29 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
2021-02-20 09:57:27 -08:00
|
|
|
# == Schema Information
|
|
|
|
|
#
|
|
|
|
|
# Table name: commercials
|
|
|
|
|
#
|
|
|
|
|
# id :bigint not null, primary key
|
|
|
|
|
# commercial_type :string
|
|
|
|
|
# commercialable_type :string
|
|
|
|
|
# url :string
|
|
|
|
|
# created_at :datetime
|
|
|
|
|
# updated_at :datetime
|
|
|
|
|
# commercial_id :string
|
|
|
|
|
# commercialable_id :integer
|
|
|
|
|
#
|
2014-08-05 18:23:42 +02:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
|
|
describe Commercial do
|
|
|
|
|
|
2015-04-22 21:30:32 +02:00
|
|
|
it { should validate_presence_of(:url) }
|
2014-08-05 18:23:42 +02:00
|
|
|
|
|
|
|
|
end
|