~ubuntu-branches/ubuntu/maverick/libalgorithm-merge-perl/maverick

« back to all changes in this revision

Viewing changes to t/00basic.t

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Yu
  • Date: 2009-07-21 20:17:13 UTC
  • Revision ID: james.westby@ubuntu.com-20090721201713-u2o3jjssh9z6cxtw
Tags: upstream-0.08
ImportĀ upstreamĀ versionĀ 0.08

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
use Test::More tests => 3;
 
2
 
 
3
require_ok('Algorithm::Merge');
 
4
 
 
5
eval { Algorithm::Merge -> import('diff3'); };
 
6
 
 
7
ok !$@;
 
8
 
 
9
eval { Algorithm::Merge -> import('merge'); };
 
10
 
 
11
ok !$@;
 
12
 
 
13
exit 0;
 
14