Skip to content

Commit 53e43c9

Browse files
authored
Merge pull request #111 from Alessandro-Barbieri/main
switch to ounit2
2 parents 74d1307 + c0352e7 commit 53e43c9

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ A library for manipulation of IP and MAC address representations.
44

55
Features:
66

7-
* oUnit-based tests
7+
* ounit2-based tests
88
* IPv4 and IPv6 support
99
* IPv4 and IPv6 CIDR prefix support
1010
* IPv4 and IPv6 [CIDR-scoped address](http://tools.ietf.org/html/rfc4291#section-2.3) support

ipaddr-sexp.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ depends: [
1616
"dune" {>= "1.9.0"}
1717
"ipaddr" {= version}
1818
"ipaddr-cstruct" {with-test & = version}
19-
"ounit" {with-test}
19+
"ounit2" {with-test}
2020
"ppx_sexp_conv" {>= "v0.9.0"}
2121
"sexplib0"
2222
]

ipaddr.opam

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ synopsis: "A library for manipulation of IP (and MAC) address representations"
55
description: """
66
Features:
77
* Depends only on sexplib (conditionalization under consideration)
8-
* oUnit-based tests
8+
* ounit2-based tests
99
* IPv4 and IPv6 support
1010
* IPv4 and IPv6 CIDR prefix support
1111
* IPv4 and IPv6 [CIDR-scoped address](http://tools.ietf.org/html/rfc4291#section-2.3) support
@@ -32,7 +32,7 @@ depends: [
3232
"macaddr" {= version}
3333
"stdlib-shims"
3434
"domain-name" {>= "0.3.0"}
35-
"ounit" {with-test}
35+
"ounit2" {with-test}
3636
"ppx_sexp_conv" {with-test & >= "v0.9.0"}
3737
]
3838
build: [

lib_test/dune

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,22 +27,22 @@
2727
(name test_ipaddr)
2828
(package ipaddr-sexp)
2929
(modules test_ipaddr)
30-
(libraries ipaddr ipaddr-cstruct test_ipaddr_sexp oUnit))
30+
(libraries ipaddr ipaddr-cstruct test_ipaddr_sexp ounit2))
3131

3232
(test
3333
(name test_ipaddr_b128)
3434
(package ipaddr-sexp)
3535
(modules test_ipaddr_b128 ipaddr_internal)
36-
(libraries ipaddr ipaddr-cstruct test_ipaddr_sexp oUnit))
36+
(libraries ipaddr ipaddr-cstruct test_ipaddr_sexp ounit2))
3737

3838
(test
3939
(name test_macaddr)
4040
(package macaddr-sexp)
4141
(modules test_macaddr)
42-
(libraries macaddr macaddr-cstruct test_macaddr_sexp oUnit))
42+
(libraries macaddr macaddr-cstruct test_macaddr_sexp ounit2))
4343

4444
(test
4545
(name test_ppx)
4646
(modules test_ppx)
4747
(package ipaddr-sexp)
48-
(libraries ipaddr macaddr test_ipaddr_sexp test_macaddr_sexp oUnit))
48+
(libraries ipaddr macaddr test_ipaddr_sexp test_macaddr_sexp ounit2))

macaddr-sexp.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ depends: [
1212
"dune" {>= "1.9.0"}
1313
"macaddr" {= version}
1414
"macaddr-cstruct" {with-test & = version}
15-
"ounit" {with-test}
15+
"ounit2" {with-test}
1616
"ppx_sexp_conv" {>= "v0.9.0"}
1717
"sexplib0"
1818
]

macaddr.opam

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ bug-reports: "https://github.com/mirage/ocaml-ipaddr/issues"
1010
depends: [
1111
"ocaml" {>= "4.04.0"}
1212
"dune" {>= "1.9.0"}
13-
"ounit" {with-test}
13+
"ounit2" {with-test}
1414
"ppx_sexp_conv" {with-test & >= "v0.9.0"}
1515
]
1616
conflicts: [ "ipaddr" {< "3.0.0"} ]
@@ -25,7 +25,7 @@ A library for manipulation of MAC address representations.
2525

2626
Features:
2727

28-
* oUnit-based tests
28+
* ounit2-based tests
2929
* MAC-48 (Ethernet) address support
3030
* `Macaddr` is a `Map.OrderedType`
3131
* All types have sexplib serializers/deserializers optionally via the `Macaddr_sexp` library.

0 commit comments

Comments
 (0)