Skip to content

Commit 33d9e2a

Browse files
add test
1 parent 00f7b3f commit 33d9e2a

File tree

13 files changed

+89
-0
lines changed

13 files changed

+89
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name = "A"
2+
uuid = "c8938445-7efa-411c-ba8f-721576f9f47a"
3+
version = "0.1.0"
4+
5+
[deps]
6+
B = "ef00b25e-dd85-47e0-9cd9-ed3c1ff51032"
7+
8+
[weakdeps]
9+
C = "d95b043b-fbe6-48a2-93d2-75fba1b51518"
10+
D = "64e66ba5-e914-4adb-a5f6-036ef0c801f3"
11+
12+
[extensions]
13+
CExt = "C"
14+
DExt = "D"
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module CExt
2+
3+
end # module
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module DExt
2+
3+
end # module

test/extensions/circular/A/src/A.jl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module A
2+
3+
end # module
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
name = "B"
2+
uuid = "ef00b25e-dd85-47e0-9cd9-ed3c1ff51032"
3+
version = "0.1.0"
4+
5+
[deps]
6+
C = "d95b043b-fbe6-48a2-93d2-75fba1b51518"
7+
D = "64e66ba5-e914-4adb-a5f6-036ef0c801f3"

test/extensions/circular/B/src/B.jl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module B
2+
3+
end # module
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
name = "C"
2+
uuid = "d95b043b-fbe6-48a2-93d2-75fba1b51518"
3+
version = "0.1.0"

test/extensions/circular/C/src/C.jl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module C
2+
3+
end # module
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
name = "D"
2+
uuid = "64e66ba5-e914-4adb-a5f6-036ef0c801f3"
3+
version = "0.1.0"

test/extensions/circular/D/src/D.jl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module D
2+
3+
end # module

0 commit comments

Comments
 (0)