From 8ec8da0491ad89604700b3e29a227966f6d84ba1 Mon Sep 17 00:00:00 2001 From: Perl Tidy Date: Wed, 5 Dec 2018 15:38:52 -0500 Subject: no bug - reformat all the code using the new perltidy rules --- t/daemon-control-catch-signal.t | 88 ++++++++++++++++++++++------------------- 1 file changed, 48 insertions(+), 40 deletions(-) (limited to 't/daemon-control-catch-signal.t') diff --git a/t/daemon-control-catch-signal.t b/t/daemon-control-catch-signal.t index c42e26fc1..9db43d330 100644 --- a/t/daemon-control-catch-signal.t +++ b/t/daemon-control-catch-signal.t @@ -15,61 +15,61 @@ use Test::More; use ok 'Bugzilla::DaemonControl', qw(catch_signal); -my $loop = IO::Async::Loop->new; +my $loop = IO::Async::Loop->new; my $signal_test_out = ''; -my $signal_test = IO::Async::Process->new( - code => sub { - my $f = catch_signal("TERM", 42); - say $f->isa('Future') ? "I have a Future" : ''; - my $val = $f->get; - say "Got $val from TERM"; - sleep 30; - say "I Failed My Mission"; - }, - stdout => { into => \$signal_test_out }, - on_finish => sub { - $loop->stop; - }, - on_exception => sub { - diag "@_"; - fail("got exception"); - $loop->stop; - } +my $signal_test = IO::Async::Process->new( + code => sub { + my $f = catch_signal("TERM", 42); + say $f->isa('Future') ? "I have a Future" : ''; + my $val = $f->get; + say "Got $val from TERM"; + sleep 30; + say "I Failed My Mission"; + }, + stdout => {into => \$signal_test_out}, + on_finish => sub { + $loop->stop; + }, + on_exception => sub { + diag "@_"; + fail("got exception"); + $loop->stop; + } ); diag "starting signal test"; $loop->add($signal_test); -ok( $signal_test->is_running, "signal test is running"); +ok($signal_test->is_running, "signal test is running"); my $send_first_term = IO::Async::Timer::Countdown->new( - delay => 5, - on_expire => sub { - diag "sending first TERM"; - ok($signal_test->is_running, "signal test is still running"); - $signal_test->kill('TERM'); - } + delay => 5, + on_expire => sub { + diag "sending first TERM"; + ok($signal_test->is_running, "signal test is still running"); + $signal_test->kill('TERM'); + } ); $send_first_term->start; $loop->add($send_first_term); my $send_second_term = IO::Async::Timer::Countdown->new( - delay => 10, - on_expire => sub { - diag "sending second TERM"; - ok($signal_test->is_running, "signal test is still running"); - $signal_test->kill('TERM'); - } + delay => 10, + on_expire => sub { + diag "sending second TERM"; + ok($signal_test->is_running, "signal test is still running"); + $signal_test->kill('TERM'); + } ); $send_second_term->start; $loop->add($send_second_term); my $timeout = IO::Async::Timer::Countdown->new( - delay => 60, - on_expire => sub { - fail("test ran for too long"); - $loop->stop; - }, + delay => 60, + on_expire => sub { + fail("test ran for too long"); + $loop->stop; + }, ); $timeout->start; @@ -79,7 +79,15 @@ $loop->run; diag $signal_test_out; like($signal_test_out, qr/I have a Future/, "catch_signal() returned a future"); -like($signal_test_out, qr/Got 42 from TERM/, "catch_signal() returned the right value when done"); -unlike($signal_test_out, qr/I Failed My Mission/, "catch_signal() only happened once"); +like( + $signal_test_out, + qr/Got 42 from TERM/, + "catch_signal() returned the right value when done" +); +unlike( + $signal_test_out, + qr/I Failed My Mission/, + "catch_signal() only happened once" +); -done_testing(); \ No newline at end of file +done_testing(); -- cgit v1.2.3-24-g4f1b