File: 01_compile.t

package info (click to toggle)
libaspect-perl 1.04-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 720 kB
  • sloc: perl: 6,846; makefile: 2
file content (17 lines) | stat: -rw-r--r-- 357 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/perl

use strict;
BEGIN {
	$|  = 1;
	$^W = 1;
}

use Test::More tests => 7;
use Test::NoWarnings;

use_ok( 'Aspect'                      );
use_ok( 'Aspect::Library::Breakpoint' );
use_ok( 'Aspect::Library::Listenable' );
use_ok( 'Aspect::Library::Singleton'  );
use_ok( 'Aspect::Library::Wormhole'   );
require_ok( 'Aspect::Point::Functions' );