Skip to content

Commit e806d17

Browse files
committed
more coverage
1 parent 67b70ea commit e806d17

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

tests/CacheTest.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,9 @@ function render(Tokenizer $tokenizer, AbstractCache ...$directives): string
7575

7676
$directives[] = new NeverCache();
7777
expect(render($tokenizer, ...$directives))->toBe("private no-store");
78+
79+
$directives[] = new Revalidate(RevalidationEnum::EveryRequest);
80+
expect(render($tokenizer, ...$directives))->toBe("private no-store");
7881
});
7982

8083
it('can handle public/private', function () {

0 commit comments

Comments
 (0)