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

# We're checking that application_dir returns sensibly.

use strict;
use RTF::Control;

use RTF::TEXT::Converter;

use Test::More tests => 1;


{ 

	my $object = RTF::Control->new( -confdir => 'asdfasdf' );
	is( $object->application_dir, 'asdfasdf', '-confdir to set application_dir works' );

}