diff --git a/test/feh.i b/test/feh.i index 9512442f1834dd31757c5ab66b1e2a4caff523b9..74802a7e1647f0580a98396b19dde5288aeba949 100755 --- a/test/feh.i +++ b/test/feh.i @@ -4,7 +4,7 @@ use warnings; use 5.010; use Cwd; -use Test::More tests => 70; +use Test::More tests => 71; use Time::HiRes qw/sleep/; use X11::GUITest qw/:ALL/; @@ -296,6 +296,12 @@ is($width, 423, '--geometry: correct width'); is($height, 232, '--geometry: correct height'); feh_stop(); +$win = feh_start('--full-screen'); +(undef, undef, $width, $height) = GetWindowPos($win); +ok([(GetWindowPos($win))[2, 3]] ~~ [GetScreenRes()], + 'fullscreen uses full screen size'); +feh_stop(); + $win = feh_start(); (undef, undef, $width, $height) = GetWindowPos($win); is($width, 16, 'correct default window width');