Skip to content

Commit

Permalink
no longer used file types
Browse files Browse the repository at this point in the history
  • Loading branch information
coke committed Sep 12, 2023
1 parent 7db9eed commit 09fe6e9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 10 deletions.
5 changes: 1 addition & 4 deletions t/05-tabs.rakutest
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,7 @@ use Test-Files;

my @files = Test-Files.files\
.grep({$_ ne 'LICENSE'|'Makefile'})\
.grep({! $_.contains('custom-theme')})\
.grep({! $_.ends-with('.png')})\
.grep({! $_.ends-with('.svg')})\
.grep({! $_.ends-with('.ico')});
.grep({! $_.contains('custom-theme')});

plan +@files;

Expand Down
5 changes: 1 addition & 4 deletions xt/final-newline.rakutest
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,7 @@ Make sure that text files end in a newline
my @files = Test-Files.files\
.grep({$_ ne 'LICENSE'})\
.grep({! $_.contains: 'custom-theme'})\
.grep({! $_.contains: 'util/trigger-rebuild.txt'})\
.grep({! $_.ends-with: '.png'})\
.grep({! $_.ends-with: '.svg'})\
.grep({! $_.ends-with: '.ico'});
.grep({! $_.contains: 'util/trigger-rebuild.txt'});

if @files {
plan +@files;
Expand Down
3 changes: 1 addition & 2 deletions xt/vim-mode.rakutest
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@ https://github.com/Raku/doc/issues/3058
=end overview

my @files = Test-Files.files\
.grep({! $_.ends-with: '.png' | '.ico'});
my @files = Test-Files.files;

if @files {
plan +@files;
Expand Down

0 comments on commit 09fe6e9

Please sign in to comment.