mirror of
https://github.com/discourse/discourse.git
synced 2024-12-01 05:43:38 +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
|