mirror of
https://git.freebsd.org/ports.git
synced 2025-06-26 07:00:31 -04:00
Gtk2::Notify provides a Perl XS API to the The Desktop Notifications framework, which provides a standard way of doing passive pop-up notifications on the desktop. WWW: http://search.cpan.org/dist/Gtk2-Notify/ PR: ports/161571 Submitted by: Zhihao Yuan <lichray@gmail.com>
51 lines
1.1 KiB
Perl
51 lines
1.1 KiB
Perl
--- t/notification.t.orig 2006-08-27 14:11:57.000000000 -0500
|
|
+++ t/notification.t 2012-04-29 05:36:50.252318938 -0500
|
|
@@ -2,20 +2,18 @@
|
|
|
|
use strict;
|
|
use warnings;
|
|
-use Gtk2::TestHelper tests => 35;
|
|
+use Gtk2::TestHelper tests => 32;
|
|
use Test::Exception;
|
|
use Gtk2::Notify -init, $0;
|
|
|
|
ginterfaces_ok('Gtk2::Notify');
|
|
|
|
-my $w = Gtk2::Window->new;
|
|
-my $n = Gtk2::Notify->new('foo', 'bar', '', $w);
|
|
+my $n = Gtk2::Notify->new('foo', 'bar', '');
|
|
|
|
isa_ok($n, 'Gtk2::Notify');
|
|
|
|
my @methods = qw(
|
|
add_action
|
|
- attach_to_widget
|
|
clear_actions
|
|
clear_hints
|
|
close
|
|
@@ -46,16 +44,6 @@ lives_ok(sub {
|
|
}, 42);
|
|
}, 'add_action');
|
|
|
|
-{
|
|
- my $nw = Gtk2::Window->new;
|
|
- lives_ok(sub {
|
|
- $n->attach_to_widget($nw);
|
|
- }, 'attach_to_widget');
|
|
- lives_ok(sub {
|
|
- $n->attach_to_widget($w);
|
|
- }, 'attach_to_widget');
|
|
-}
|
|
-
|
|
lives_ok(sub {
|
|
$n->clear_actions;
|
|
}, 'clear_actions with existing actions');
|
|
@@ -99,8 +87,6 @@ lives_ok(sub {
|
|
$n->close;
|
|
}, 'close before show');
|
|
|
|
-$w->show_all;
|
|
-
|
|
lives_ok(sub {
|
|
$n->show;
|
|
}, 'show');
|