diaspora/spec/lib/stream/comments_spec.rb
2017-09-17 19:29:15 +02:00

13 lines
317 B
Ruby

# frozen_string_literal: true
require Rails.root.join('spec', 'shared_behaviors', 'stream')
describe Stream::Comments do
before do
@stream = Stream::Comments.new(alice, :max_time => Time.now, :order => 'updated_at')
end
describe 'shared behaviors' do
it_should_behave_like 'it is a stream'
end
end