~ubuntu-branches/ubuntu/wily/libdbix-safe-perl/wily

« back to all changes in this revision

Viewing changes to t/01safe.t

  • Committer: Bazaar Package Importer
  • Author(s): Krzysztof Krzyzaniak (eloy)
  • Date: 2009-09-19 23:56:10 UTC
  • Revision ID: james.westby@ubuntu.com-20090919235610-0mnmz8kuup0lz31n
Tags: upstream-1.2.5
ImportĀ upstreamĀ versionĀ 1.2.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/perl -- -*-cperl-*-
 
2
 
 
3
use strict;
 
4
use warnings;
 
5
use Test::More  tests => 1;
 
6
use Data::Dumper;
 
7
 
 
8
eval { require DBIx::Safe; };
 
9
$@ and BAIL_OUT qq{Could not load the DBIx::Safe module: $@};
 
10
pass("DBIx::Safe module loaded");
 
11