23 lines
691 B
Ruby
23 lines
691 B
Ruby
require 'spec_helper'
|
|
|
|
describe CommentsHelper do
|
|
describe '.new_comment_form' do
|
|
before do
|
|
@user = alice
|
|
@aspect = @user.aspects.first
|
|
@post = @user.post(:status_message, :text => "hi", :to => @aspect.id)
|
|
end
|
|
it 'renders a new comment form' do
|
|
new_comment_form(@post.id, @user).should ==
|
|
@controller.render_to_string(:partial => 'comments/new_comment',
|
|
:locals => {:post_id => @post.id, :current_user => @user})
|
|
end
|
|
it 'renders it fast the second time' do
|
|
new_comment_form(@post.id, @user)
|
|
time = Benchmark.realtime{
|
|
new_comment_form(@post.id, @user)
|
|
}
|
|
(time*1000).should < 1
|
|
end
|
|
end
|
|
end
|