discourse/spec/models/onebox_render_spec.rb

12 lines
270 B
Ruby
Raw Normal View History

2013-02-06 03:16:51 +08:00
require 'spec_helper'
describe OneboxRender do
2013-02-26 00:42:20 +08:00
2013-02-06 03:16:51 +08:00
it { should validate_presence_of :url }
it { should validate_presence_of :cooked }
2013-02-26 00:42:20 +08:00
it { should validate_presence_of :expires_at }
2013-02-06 03:16:51 +08:00
it { should have_many :post_onebox_renders }
it { should have_many :posts }
end