From da16512a4ae0b78d753faf5afd30f8f1c796f3a3 Mon Sep 17 00:00:00 2001 From: JulienPeloton Date: Thu, 24 Oct 2024 11:44:12 +0200 Subject: [PATCH] Update test --- tests/api_ssoft_test.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/tests/api_ssoft_test.py b/tests/api_ssoft_test.py index 40b67294..7861168d 100644 --- a/tests/api_ssoft_test.py +++ b/tests/api_ssoft_test.py @@ -162,6 +162,18 @@ def compare_schema() -> None: assert keys1 == keys2, [keys1, keys2] +def check_sshg1g2() -> None: + """ + Examples + -------- + >>> check_sshg1g2() + """ + pdf = ssoftsearch(flavor="SSHG1G2") + + assert "period" in pdf.columns + assert "a_b" in pdf.columns + + if __name__ == "__main__": """ Execute the test suite """ import sys