Skip to content
Extraits de code Groupes Projets
Valider 55efeb5a rédigé par Maxwell Salzberg's avatar Maxwell Salzberg
Parcourir les fichiers

moved helper spec to correct file

parent c9523d49
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
......@@ -20,38 +20,4 @@ describe CommentsHelper do
(time*1000).should < 1
end
end
describe 'commenting_disabled?' do
include Devise::TestHelpers
before do
sign_in alice
def user_signed_in?
true
end
end
it 'returns true if no user is signed in' do
def user_signed_in?
false
end
commenting_disabled?(stub).should == true
end
it 'returns true if @commenting_disabled is set' do
@commenting_disabled = true
commenting_disabled?(stub).should == true
@commenting_disabled = false
commenting_disabled?(stub).should == false
end
it 'returns @stream.can_comment? if @stream is set' do
post = stub
@stream = stub
@stream.should_receive(:can_comment?).with(post).and_return(true)
commenting_disabled?(post).should == false
@stream.should_receive(:can_comment?).with(post).and_return(false)
commenting_disabled?(post).should == true
end
end
end
require 'spec_helper'
describe InterimStreamHackinessHelper do
describe 'commenting_disabled?' do
include Devise::TestHelpers
before do
sign_in alice
def user_signed_in?
true
end
end
it 'returns true if no user is signed in' do
def user_signed_in?
false
end
commenting_disabled?(stub).should == true
end
it 'returns true if @commenting_disabled is set' do
@commenting_disabled = true
commenting_disabled?(stub).should == true
@commenting_disabled = false
commenting_disabled?(stub).should == false
end
it 'returns @stream.can_comment? if @stream is set' do
post = stub
@stream = stub
@stream.should_receive(:can_comment?).with(post).and_return(true)
commenting_disabled?(post).should == false
@stream.should_receive(:can_comment?).with(post).and_return(false)
commenting_disabled?(post).should == true
end
end
end
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter