From eb35898380d46502886f37c4d09c6b3ba384da08 Mon Sep 17 00:00:00 2001 From: Alex Rubinsteyn Date: Mon, 7 Oct 2024 12:28:44 -0400 Subject: [PATCH] adding tests --- tests/test_annotations.py | 1 - tests/test_cat.py | 1 - tests/test_cd1.py | 1 - tests/test_chicken.py | 1 - tests/test_class2_pair.py | 1 - 5 files changed, 5 deletions(-) diff --git a/tests/test_annotations.py b/tests/test_annotations.py index 99c5a42..35151a9 100644 --- a/tests/test_annotations.py +++ b/tests/test_annotations.py @@ -4,7 +4,6 @@ ) from .common import eq_ - def test_questionable_A_01_281Q(): result = parse("A*01:281Q") eq_(result, Allele.get("HLA", "A", "01", "281", annotation="Q")) diff --git a/tests/test_cat.py b/tests/test_cat.py index af6d02d..27a94df 100644 --- a/tests/test_cat.py +++ b/tests/test_cat.py @@ -1,7 +1,6 @@ from mhcgnomes import parse from .common import eq_ - def test_parse_FLA_E_18_01(): s = "FLA-E*18:01" eq_(parse(s, verbose=True).to_string(), s) diff --git a/tests/test_cd1.py b/tests/test_cd1.py index 598c70f..930073c 100644 --- a/tests/test_cd1.py +++ b/tests/test_cd1.py @@ -1,7 +1,6 @@ from mhcgnomes import parse, Gene from .common import eq_ - def test_mamu_cd1b(): seq = "rhesus macaque CD1b" result = parse(seq) diff --git a/tests/test_chicken.py b/tests/test_chicken.py index e93182a..eb5869d 100644 --- a/tests/test_chicken.py +++ b/tests/test_chicken.py @@ -1,7 +1,6 @@ from mhcgnomes import parse, Species, Allele, Haplotype, Gene from .common import eq_ - def test_parse_BF2_gene(): result = parse("BF2") expected = Gene.get("chicken", "BF2") diff --git a/tests/test_class2_pair.py b/tests/test_class2_pair.py index 8b1897b..667d272 100644 --- a/tests/test_class2_pair.py +++ b/tests/test_class2_pair.py @@ -1,7 +1,6 @@ from mhcgnomes import parse, Pair from .common import eq_ - def test_restrict_num_allele_fields_HLA_DRA_01_01_01_01_DRB1_01_01_01_01(): result = parse("DRA*01:01:01:01/DRB*01:01:01:01") eq_(type(result), Pair)