Skip to content

Commit

Permalink
Removed tests for fusion command from test_main...
Browse files Browse the repository at this point in the history
  • Loading branch information
rbyrne299 committed Jun 27, 2024
1 parent 818827c commit 2972ca9
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions python/tests/test_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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']
Expand Down

0 comments on commit 2972ca9

Please sign in to comment.