mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 01:33:24 +08:00
10 lines
153 B
Ruby
10 lines
153 B
Ruby
require 'spec_helper'
|
|
require_dependency 'post_revision'
|
|
|
|
describe PostRevision do
|
|
|
|
it { should belong_to :user }
|
|
it { should belong_to :post }
|
|
|
|
end
|