]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/view.t
t/config.t: remove GIT_DIR usage in test
[public-inbox.git] / t / view.t
index 1a47416faaef9944f80494b22d90360e3229bc9d..a70c52d8d0549e49cb50f86f7efb22484e986eb1 100644 (file)
--- a/t/view.t
+++ b/t/view.t
@@ -72,7 +72,7 @@ EOF
        );
 
        my $html = PublicInbox::View::msg_html(undef, $mime);
-       like($html, qr/hi\n-+ part #2 -+\nbye\n/, "multipart split");
+       like($html, qr/hi\n.*-- Attachment #2.*\nbye\n/s, "multipart split");
 }
 
 # multipart email with attached patch
@@ -101,7 +101,7 @@ EOF
        );
 
        my $html = PublicInbox::View::msg_html(undef, $mime);
-       like($html, qr!see attached patch\n-+ foo\.patch -+\n--- a/file\n!,
+       like($html, qr!.*Attachment #2: foo\.patch --!,
                "parts split with filename");
 }
 
@@ -133,8 +133,11 @@ EOF
 
 {
        use PublicInbox::MID qw/id_compress/;
+
+       # n.b: this is probably invalid since we dropped CGI for PSGI:
        like(id_compress('foo%bar@wtf'), qr/\A[a-f0-9]{40}\z/,
                "percent always converted to sha1 to workaround buggy httpds");
+
        is(id_compress('foobar-wtf'), 'foobar-wtf',
                'regular ID not compressed');
 }