From 379c4159060913b34efe6035ef48f0d224a13cc1 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Al=C3=A1n=20Mu=C3=B1oz?= <alan.munoz@ed.ac.uk>
Date: Sat, 24 Sep 2022 17:06:55 +0100
Subject: [PATCH] test(agora): add exists test

---
 tests/agora/base_test.py | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/tests/agora/base_test.py b/tests/agora/base_test.py
index 8e05d0bd..feefb908 100644
--- a/tests/agora/base_test.py
+++ b/tests/agora/base_test.py
@@ -17,6 +17,10 @@ class DummyParameters(ParametersABC):
         return cls.from_dict({})
 
 
+def test_file_exists(yaml_file):
+    assert yaml_file.exists()
+
+
 def test_from_yaml(yaml_file):
     # From yaml
     params = DummyParameters.from_yaml(yaml_file)
-- 
GitLab