Skip to content

Commit

Permalink
adding basic test
Browse files Browse the repository at this point in the history
  • Loading branch information
xsawyerx committed Sep 8, 2010
1 parent 9f6c9d3 commit 475f721
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
Binary file added t/.base.t.swp
Binary file not shown.
16 changes: 16 additions & 0 deletions t/base.t
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#!perl

use strict;
use warnings;

use Test::More tests => 5;
use App::cpang;

my $cg = App::cpang->new();
isa_ok( $cg, 'App::cpang' );
isa_ok( $cg->{'main_window'}, 'Gtk2::Window' );
isa_ok( $cg->{'terminal'}, 'Gnome2::Vte::Terminal' );
isa_ok( $cg->{'scrollbar'}, 'Gtk2::VScrollbar' );
isa_ok( $cg->{'status'}, 'Gtk2::Statusbar' );


0 comments on commit 475f721

Please sign in to comment.