]> source.dussan.org Git - redmine.git/commitdiff
remove trailing white-spaces and code clean up test/mocks/open_id_authentication_mock.rb.
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Wed, 1 Jun 2011 11:04:35 +0000 (11:04 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Wed, 1 Jun 2011 11:04:35 +0000 (11:04 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5988 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/mocks/open_id_authentication_mock.rb

index cca1e9edb29777f82f8cbc6dee9910ab1572bbb8..10d195e071bd6c995ded0461ccb509af9709f97e 100644 (file)
@@ -1,16 +1,16 @@
 # Mocks out OpenID
 #
 # http://www.northpub.com/articles/2007/04/02/testing-openid-support
-module OpenIdAuthentication 
+module OpenIdAuthentication
 
-  EXTENSION_FIELDS = {'email' => 'user@somedomain.com',
+  EXTENSION_FIELDS = {'email'    => 'user@somedomain.com',
                       'nickname' => 'cool_user',
-                      'country' => 'US',
+                      'country'  => 'US',
                       'postcode' => '12345',
                       'fullname' => 'Cool User',
-                      'dob' => '1970-04-01',
+                      'dob'      => '1970-04-01',
                       'language' => 'en',
-                      'timezone' => 'America/New_York'}     
+                      'timezone' => 'America/New_York'}
 
   protected
 
@@ -31,7 +31,7 @@ module OpenIdAuthentication
 
         yield Result[:successful], identity_url , extension_response_fields
       else
-        logger.info "OpenID authentication failed: #{identity_url}" 
+        logger.info "OpenID authentication failed: #{identity_url}"
         yield Result[:failed], identity_url, nil
       end
     end