mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 22:26:26 +08:00
10 lines
156 B
Ruby
10 lines
156 B
Ruby
require 'spec_helper'
|
|
require_dependency 'topic_revision'
|
|
|
|
describe TopicRevision do
|
|
|
|
it { should belong_to :user }
|
|
it { should belong_to :topic }
|
|
|
|
end
|