Skip to content
Extraits de code Groupes Projets
Valider 8818a9bb rédigé par zhitomirskiyi's avatar zhitomirskiyi
Parcourir les fichiers

Merge branch 'master' of github.com:diaspora/diaspora

parents c28b5a22 8bd784e5
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
......@@ -77,7 +77,7 @@ class AspectsController < ApplicationController
end
def edit
@aspect = current_user.aspect_by_id params[:id]
@aspect = current_user.aspects.where(:id => params[:id]).first
@contacts = current_user.contacts.where(:pending => false)
unless @aspect
render :file => "#{Rails.root}/public/404.html", :layout => false, :status => 404
......
......@@ -331,6 +331,13 @@ describe AspectsController do
end
end
describe '#edit' do
it 'renders' do
get :edit, :id => @aspect0.id
response.should be_success
end
end
describe "#remove_from_aspect" do
it 'removes contacts from an aspect' do
@user.add_contact_to_aspect(@contact, @aspect1)
......
......@@ -74,6 +74,13 @@ describe PhotosController do
assigns[:ownership].should be_true
end
it "renders a show page for another user's photo" do
get :show, :id => photo2.id
response.status.should == 200
assigns[:photo].should == photo2
assigns[:ownership].should be_false
end
end
describe '#edit' do
......
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