diff options
author | David Buchanan <d@vidbuchanan.co.uk> | 2021-06-21 17:24:23 +0100 |
---|---|---|
committer | David Buchanan <d@vidbuchanan.co.uk> | 2021-06-21 17:24:23 +0100 |
commit | 79f2dffe1b5f5c6656285ce0bc65b5e4c5c9bb10 (patch) | |
tree | ec7f9bb4de46c4b3ff37c5905d3cc005078b9371 /test/feh.t | |
parent | bc372c8faddd396b2d07470139b62290f499881f (diff) |
Add test case for tiny PBM file
Diffstat (limited to 'test/feh.t')
-rw-r--r-- | test/feh.t | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -2,7 +2,7 @@ use strict; use warnings; use 5.010; -use Test::Command tests => 71; +use Test::Command tests => 73; $ENV{HOME} = 'test'; @@ -186,3 +186,7 @@ $cmd $cmd->exit_is_num(0); $cmd->stdout_is_file("test/${list_dir}/default"); $cmd->stderr_is_eq(''); + +$cmd = Test::Command->new( cmd => "$feh --list test/tiny.pbm" ); +$cmd->exit_is_num(0); +$cmd->stderr_is_eq(''); |