changeset 1936:a7c9d04b57e0 feature/grids/manifolds

Stub out boundaries(::UnstructuredAtlas)
author Jonatan Werpers <jonatan@werpers.com>
date Fri, 07 Feb 2025 13:36:17 +0100
parents 378d38bab1df
children 755fc0907e99
files src/Grids/manifolds.jl test/Grids/manifolds_test.jl
diffstat 2 files changed, 7 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/Grids/manifolds.jl	Fri Feb 07 13:33:43 2025 +0100
+++ b/src/Grids/manifolds.jl	Fri Feb 07 13:36:17 2025 +0100
@@ -113,3 +113,7 @@
 
 charts(a::UnstructuredAtlas) = a.charts
 connections(a::UnstructuredAtlas) = a.connections
+
+function boundaries(a::UnstructuredAtlas)
+    return nothing
+end
--- a/test/Grids/manifolds_test.jl	Fri Feb 07 13:33:43 2025 +0100
+++ b/test/Grids/manifolds_test.jl	Fri Feb 07 13:36:17 2025 +0100
@@ -147,5 +147,7 @@
 end
 
 @testset "UnstructuredAtlas" begin
-    @test_broken false
+    @testset "boundaries" begin
+        @test_broken false
+    end
 end