about summary refs log tree commit homepage
path: root/t/www_listing.t
diff options
context:
space:
mode:
Diffstat (limited to 't/www_listing.t')
-rw-r--r--t/www_listing.t7
1 files changed, 6 insertions, 1 deletions
diff --git a/t/www_listing.t b/t/www_listing.t
index d82a4a4a..e5b797db 100644
--- a/t/www_listing.t
+++ b/t/www_listing.t
@@ -55,7 +55,12 @@ sub tiny_test {
                 $res->{headers}->{'last-modified'},
                 'modified field and Last-Modified header match');
 
-        ok($manifest->{'/v2/git/0.git'}, 'v2 epoch appeared');
+        ok(my $v2epoch0 = $manifest->{'/v2/git/0.git'}, 'v2 epoch 0 appeared');
+        like($v2epoch0->{description}, qr/ \[epoch 0\]\z/,
+                'epoch 0 in description');
+        ok(my $v2epoch1 = $manifest->{'/v2/git/1.git'}, 'v2 epoch 1 appeared');
+        like($v2epoch1->{description}, qr/ \[epoch 1\]\z/,
+                'epoch 1 in description');
 }
 
 my $pid;