summaryrefslogtreecommitdiffstats
path: root/RPM4/t/07changelogs.t
diff options
context:
space:
mode:
Diffstat (limited to 'RPM4/t/07changelogs.t')
-rw-r--r--RPM4/t/07changelogs.t18
1 files changed, 18 insertions, 0 deletions
diff --git a/RPM4/t/07changelogs.t b/RPM4/t/07changelogs.t
new file mode 100644
index 0000000..d2c2555
--- /dev/null
+++ b/RPM4/t/07changelogs.t
@@ -0,0 +1,18 @@
+# $Id$
+
+use strict;
+use Test::More tests => 1;
+use FindBin qw($Bin);
+use RPM4;
+use RPM4::Header::Changelogs;
+
+my $htest = RPM4::Header->new("$Bin/test-rpm-1.0-1mdk.noarch.rpm");
+
+my $ch = RPM4::Header::Changelogs->new($htest);
+
+isa_ok(
+ $ch,
+ 'RPM4::Header::Changelogs',
+ 'Get changelogs object'
+);
+