Add author requires so all the tests get run
[catagits/Catalyst-Plugin-Authentication.git] / t / live_app_remote2.t
index a9f8c34..6b01320 100644 (file)
@@ -1,6 +1,6 @@
 use strict;
 use warnings;
-use Test::More tests => 3;
+use Test::More;
 
 use lib 't/lib';
 use Catalyst::Test qw/RemoteTestApp2/;
@@ -16,5 +16,8 @@ ok( request('/')->is_success, 'testing "source" option' );
 
 $RemoteTestEngine::SSL_CLIENT_S_DN = 'CN=namexyz/OU=Test/C=Company';
 ok( request('/')->is_success, 'testing "source" + "cutname" 1' );
-is( request('/')->content, "User:namexyz\nmy_user_name:namexyz",
+is( request('/')->content, "my_user_name:namexyz",
    'testing "source" + "cutname" 2' );
+
+done_testing;
+