Skip to content
This repository was archived by the owner on Feb 17, 2022. It is now read-only.

Commit cef12e8

Browse files
committed
initial import
0 parents  commit cef12e8

File tree

3 files changed

+25
-0
lines changed

3 files changed

+25
-0
lines changed

dist.ini

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
name = DPHYS-MacAddress
2+
author = Elmar S. Heeb <[email protected]>
3+
license = GPL_3
4+
copyright_holder = Elmar S. Heeb
5+
copyright_year = 2014
6+
7+
version = 1
8+
9+
[@DPHYS]

lib/DPHYS/MacAddress.pm

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
use strict;
2+
use warnings;
3+
package DPHYS::MacAddress;
4+
# ABSTRACT: represent a MAC address
5+
6+
1;

t/000-load-module.t

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/usr/bin/perl
2+
use strict;
3+
use warnings;
4+
use 5.014;
5+
6+
use Test::More;
7+
8+
BEGIN { use_ok('DPHYS::MacAddress'); }
9+
10+
done_testing();

0 commit comments

Comments
 (0)