MS fixed webfinger spec regression

This commit is contained in:
maxwell 2010-07-16 23:11:23 -07:00
parent 5d0c5dbd86
commit 31629f8115
2 changed files with 3 additions and 13 deletions

View file

@ -5,12 +5,12 @@ describe RequestsController do
it 'should fetch the public webfinger profile on request' do
#post :create {:request => {:destination_url => 'tom@tom.joindiaspora.com'}
url = RequestsController.diaspora_url('http://tom.joindiasproa.com')
url.should == 'htto://tom.joindiaspora.com'
url = RequestsController.diaspora_url('http://tom.joindiaspora.com/')
url.should == 'http://tom.joindiaspora.com/'
url = RequestsController.diaspora_url('tom@tom.joindiaspora.com')
url.should == 'http://tom.joindiaspora.com'
url.should == 'http://tom.joindiaspora.com/'
end
end
end

View file

@ -1,10 +0,0 @@
require 'spec_helper'
describe 'webfinger' do
redner_views
describe "profile" do
it 'should fetch the public webfinger profile on request' do
end
end
end