diaspora/spec/lib/stream/comments_spec.rb
2016-11-27 21:27:12 +01:00

11 lines
286 B
Ruby

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