Description: Fix ci test
 continuous integrations tests must be able to run tests outside of the source directory. Hence they cannot use files which are available only in source package (like dist.ini). 
 .
 This patch uses t/basic.t instead of dist.ini to test file attachmenet.
 .
 This will be forwarded upstream once I'm sure that ci works.
Forwarded: not yet
Author: dod
--- a/t/basic.t
+++ b/t/basic.t
@@ -127,7 +127,7 @@
                      ->to         ( 'adam@phase-n.com'                      )
                      ->subject    ( 'Hello To:!'                            )
                      ->text_body  ( 'I am an email'                         )
-                     ->attach_file( 'dist.ini', content_type => 'text/plain')
+                     ->attach_file( 't/basic.t', content_type => 'text/plain')
                      ->transport  ( $test                                   )
                      ->send;
 ok( $rv2, 'Email sent ok' );
@@ -137,7 +137,7 @@
 like( $email, qr/phase-n/,       'Email contains to string' );
 like( $email, qr/Hello/,         'Email contains subject string' );
 like( $email, qr/I am an email/, 'Email contains text_body' );
-like( $email, qr{Content-Type: text/plain; name="dist\.ini"}, 'Email contains attachment content-Type' );
+like( $email, qr{Content-Type: text/plain; name="basic\.t"}, 'Email contains attachment content-Type' );
 
 # attach_file with no such file
 $error = exception { Email::Stuffer->attach_file( 'no such file' ) };
