The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl -w
use strict;
use warnings;

use Test::More tests => 3;

use_ok 'Gapp::Object';


{   # object contruction
    my $o = Gapp::Object->new( gclass => 'Gtk2::TextView' );
    isa_ok $o, 'Gapp::Object';
    isa_ok $o->gobject, 'Gtk2::TextView';
}