The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
# -*- perl -*-

use Test::More tests => 5;
use strict;
use warnings;

use_ok("Win32::OLE::CrystalRuntime::Application::Constants", qw{crTightHorizontalConditionFormulaType crDayMonthYear});

is(crTightHorizontalConditionFormulaType(), 47, "crTightHorizontalConditionFormulaType");

is(crDayMonthYear(), 1, "crDayMonthYear");

is(Win32::OLE::CrystalRuntime::Application::Constants::crGregorianXlitFrenchCalendar(), 12, "crGregorianXlitFrenchCalendar");

eval("crJapaneseCalendar()");
ok($@, "crJapaneseCalendar not loaded");