Files
libguestfs/perl/t/080-version.t
Richard W.M. Jones 85b1815e7b tests: Make '080' be an official test of the guestfs_version API.
Useful because it tests returning a single structure.
2016-02-12 15:41:42 +00:00

37 lines
1.2 KiB
Perl

# libguestfs Perl bindings -*- perl -*-
# Copyright (C) 2016 Red Hat Inc.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
use strict;
use warnings;
use Test::More tests => 5;
use Sys::Guestfs;
my $g = Sys::Guestfs->new ();
ok ($g);
my %version = $g->version;
ok (1);
is ($version{major}, 1);
like ($version{minor}, qr/^\d+$/);
like ($version{release}, qr/^\d+$/);
# XXX We could try to check that $version{extra} is a string, but perl
# doesn't have a distinction between string and int, and in any case
# it's possible (although unusual) for $version{extra} to be an int.