diaspora/spec/lib/stream/participate_spec.rb
2012-02-01 16:05:16 -08:00

12 lines
320 B
Ruby

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