diff options
author | Daniel Friesel <derf@derf.homelinux.org> | 2010-06-18 18:32:11 +0200 |
---|---|---|
committer | Daniel Friesel <derf@derf.homelinux.org> | 2010-06-18 18:32:11 +0200 |
commit | 095f8a48e6407e5788dc12a1fafd36ed7217b087 (patch) | |
tree | 6c75ddfdefe29bcfad751b027c0e0f7344e57fa9 /test | |
parent | c2c3d5e466331fe1453a8af70f61c91714d363ca (diff) |
Add test for --title
Diffstat (limited to 'test')
-rwxr-xr-x | test/feh.i | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -4,7 +4,7 @@ use warnings; use 5.010; use Cwd; -use Test::More tests => 63; +use Test::More tests => 65; use Time::HiRes qw/sleep/; use X11::GUITest qw/:ALL/; @@ -127,6 +127,13 @@ test_win_title($win, 'feh [1 of 1] - test/ok.jpg'); SendKeys('{DEL}'); test_no_win("Removed all images from slideshow"); +$win = feh_start('--title \'feh %m %u/%l %n\'', + 'test/ok.png test/ok.jpg test/ok.gif'); +test_win_title($win, 'feh slideshow 1/3 ok.png'); +SendKeys('{RIG}'); +test_win_title($win, 'feh slideshow 2/3 ok.jpg'); +feh_stop(); + feh_start('--cycle-once', 'test/ok.png test/ok.jpg'); for (1 .. 2) { SendKeys('{RIG}'); |