[3/3] perl: Add test for the lookup_network_has_flag() function

Message ID 20200830103602.6816-3-stefan.schantl@ipfire.org
State Not Applicable
Headers
Series [1/3] perl: Add lookup_network_has_flag() function. |

Commit Message

Stefan Schantl Aug. 30, 2020, 10:36 a.m. UTC
  Signed-off-by: Stefan Schantl <stefan.schantl@ipfire.org>
---
 src/perl/t/Location.t | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)
  

Patch

diff --git a/src/perl/t/Location.t b/src/perl/t/Location.t
index 0d9a1a5..a82bbb1 100644
--- a/src/perl/t/Location.t
+++ b/src/perl/t/Location.t
@@ -12,7 +12,7 @@  use warnings;
 my $testdb = $ENV{'database'};
 my $keyfile = $ENV{'keyfile'};
 
-use Test::More tests => 9;
+use Test::More tests => 10;
 BEGIN { use_ok('Location') };
 
 #########################
@@ -62,3 +62,6 @@  ok($as_name eq "Lightning Wire Labs GmbH", "Test 10 - Get name for AS204867.");
 
 my @locations = &Location::database_countries($db);
 ok(@locations != 0, "Test 11 - Get database countries.");
+
+my $network_flag_anycast = &Location::lookup_network_has_flag($db, $address, "LOC_NETWORK_FLAG_ANYCAST");
+ok($network_flag_anycast, "Network has Anycast flag.");