diaspora/spec/lib/stream/comments_spec.rb
Johannes Hackel 4b25545e82 fix sql error
2011-12-02 15:03:15 +01:00

12 lines
314 B
Ruby

require 'spec_helper'
require File.join(Rails.root, '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