From 2972ca95cb69031e4497c5a4e466fa9c9c256155 Mon Sep 17 00:00:00 2001 From: Ryan Byrne Date: Thu, 27 Jun 2024 16:50:59 -0400 Subject: [PATCH] Removed tests for fusion command from test_main... --- python/tests/test_main.py | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/python/tests/test_main.py b/python/tests/test_main.py index 31d7e4f..0af4f16 100644 --- a/python/tests/test_main.py +++ b/python/tests/test_main.py @@ -84,16 +84,6 @@ def test_braid_and_print(self): def test_braid_and_print_2D(self): cmds = ['ising', 'anyon1 psi {8,-4}', 'anyon2 sigma {5,5}', 'anyon3 psi {1,-1}', 'done', 'braid swap anyon1 anyon2', 'braid print', 'exit'] exec(cmds) - - @pytest.mark.main - def test_fusion(self): - cmds = ['ising', 'anyon1 psi', 'anyon2 sigma', 'done', 'fusion anyon1 anyon2', 'exit'] - exec(cmds) - - @pytest.mark.main - def test_fusion_2D(self): - cmds = ['ising', 'anyon1 psi {0,1}', 'anyon2 sigma {-1,500}', 'done', 'fusion anyon1 anyon2', 'exit'] - exec(cmds) class TestListAndHelp: @pytest.mark.main @@ -157,11 +147,6 @@ def test_invalid_braid_syntax(self): cmds = ['ising', 'anyon1 psi', 'anyon2 psi', 'anyon3 psi', 'done', 'braid swap derp derp', 'exit'] exec(cmds) - @pytest.mark.main - def test_invalid_fusion_syntax(self): - cmds = ['ising', 'anyon1 psi', 'anyon2 psi', 'anyon3 psi', 'done', 'fusion derp derp', 'exit'] - exec(cmds) - @pytest.mark.main def test_model_post_init(self): cmds = ['ising', 'anyon1 psi', 'done', 'model fibonacci', 'exit']