summaryrefslogtreecommitdiff
path: root/test/functional/webfinger_controller_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/functional/webfinger_controller_test.rb')
-rw-r--r--test/functional/webfinger_controller_test.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/functional/webfinger_controller_test.rb b/test/functional/webfinger_controller_test.rb
index 6597b69..7e1c72a 100644
--- a/test/functional/webfinger_controller_test.rb
+++ b/test/functional/webfinger_controller_test.rb
@@ -15,11 +15,13 @@ class WebfingerControllerTest < ActionController::TestCase
end
test "get user webfinger xml" do
- @user = stub_record :user, :public_key => 'my public key'
+ key = 'my public key'
+ @user = stub_record :user, :public_key => key
User.stubs(:find_by_login).with(@user.login).returns(@user)
get :search, :q => @user.email_address.to_s, :format => :xml
assert_response :success
assert_equal "application/xml", response.content_type
+ assert_includes response.body, Base64.encode64(key)
end
test "get user webfinger json" do