How about we do our commits in trunk, so that we actually get sane linear revision...
[catagits/Catalyst-Authentication-Credential-OpenID.git] / t / Provider / lib / TestApp.pm
diff --git a/t/Provider/lib/TestApp.pm b/t/Provider/lib/TestApp.pm
deleted file mode 100644 (file)
index 7544c4c..0000000
+++ /dev/null
@@ -1,74 +0,0 @@
-package TestApp;
-
-use strict;
-use warnings;
-
-use Catalyst::Runtime '5.70';
-
-use Catalyst qw(
-                -Debug
-                ConfigLoader
-                Authentication
-                Session
-                Session::Store::FastMmap
-                Session::State::Cookie
-                );
-
-our $VERSION = '0.00002';
-
-__PACKAGE__->config
-    ( name => "TestApp",
-      session => {
-          storage => "/tmp/" . __PACKAGE__ . "-" . $VERSION,
-      },
-      startup_time => time(),
-      "Plugin::Authentication" => {
-          default_realm => "members",
-          realms => {
-              members => {
-                  credential => {
-                      class => "Password",
-                      password_field => "password",
-                      password_type => "clear"
-                      },
-                          store => {
-                              class => "Minimal",
-                              users => {
-                                  paco => {
-                                      password => "l4s4v3n7ur45",
-                                  },
-                              }
-                          }
-              },
-              openid => {
-                  #ua_class => "LWPx::ParanoidAgent",
-                  ua_class => "LWP::UserAgent",
-                  ua_args => {
-                      whitelisted_hosts => [qw/ 127.0.0.1 localhost /],
-                      timeout => 10,
-                  },
-                  extension_args => [
-                      'http://openid.net/extensions/sreg/1.1',
-                      {
-                       required => 'email',
-                       optional => 'fullname,nickname,timezone',
-                      },
-                  ],
-                  debug => 1,
-                  credential => {
-                      class => "OpenID",
-#DOES NOTHING                      use_session => 1,
-                      store => {
-                          class => "OpenID",
-                      },
-                  },
-              },
-          },
-      },
-      );
-
-__PACKAGE__->setup();
-
-1;
-
-__END__