Skip to content
Extraits de code Groupes Projets
Valider cd640e1a rédigé par Raphael Sofaer's avatar Raphael Sofaer
Parcourir les fichiers

Pending spec for statusnet linkback plugin

parent 3c34749d
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
...@@ -30,6 +30,7 @@ describe PostsController do ...@@ -30,6 +30,7 @@ describe PostsController do
response.should be_success response.should be_success
end end
it 'succeeds on mobile with a reshare' do it 'succeeds on mobile with a reshare' do
get :show, "id" => Factory(:reshare, :author => alice.person).id, :format => :mobile get :show, "id" => Factory(:reshare, :author => alice.person).id, :format => :mobile
response.should be_success response.should be_success
...@@ -60,6 +61,14 @@ describe PostsController do ...@@ -60,6 +61,14 @@ describe PostsController do
response.status.should == 200 response.status.should == 200
end end
it 'succeeds for statusnet' do
pending "StatusNet send a weird ACCEPT header"
status = alice.post(:status_message, :text => "hello", :public => true, :to => 'all')
@request.env["HTTP_ACCEPT"] = "application/html+xml,text/html"
get :show, :id => status.id
response.should be_success
end
it 'shows a public photo' do it 'shows a public photo' do
pending pending
status = Factory(:status_message_with_photo, :public => true, :author => alice.person) status = Factory(:status_message_with_photo, :public => true, :author => alice.person)
......
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