mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
14 lines
300 B
Ruby
14 lines
300 B
Ruby
|
require 'spec_helper'
|
||
|
|
||
|
describe View do
|
||
|
|
||
|
it { should belong_to :parent }
|
||
|
it { should belong_to :user }
|
||
|
it { should validate_presence_of :parent_type }
|
||
|
it { should validate_presence_of :parent_id }
|
||
|
it { should validate_presence_of :ip }
|
||
|
it { should validate_presence_of :viewed_at }
|
||
|
|
||
|
|
||
|
end
|