Removed footer macros, regen tests, all still pass (#3431)

Removed `unittest` call from test file footers.
[no important files changed]
This commit is contained in:
Angeleah
2023-07-14 09:19:02 -07:00
committed by GitHub
parent a2b8f4cebf
commit e076feaa4e
10 changed files with 1 additions and 30 deletions

View File

@@ -18,6 +18,3 @@ class {{ exercise | camel_case }}Test(unittest.TestCase):
{% endfor %} {% endfor %}
{% endfor %} {% endfor %}
{% endfor %} {% endfor %}
{{ macros.footer() }}

View File

@@ -130,7 +130,3 @@ class BottleSongTest(unittest.TestCase):
"There'll be no green bottles hanging on the wall.", "There'll be no green bottles hanging on the wall.",
] ]
self.assertEqual(recite(start=10, take=10), expected) self.assertEqual(recite(start=10, take=10), expected)
if __name__ == "__main__":
unittest.main()

View File

@@ -29,4 +29,3 @@ class {{ exercise | camel_case }}Test(unittest.TestCase):
{% endfor %} {% endfor %}
{%- endfor %} {%- endfor %}
{{ macros.footer() }}

View File

@@ -177,7 +177,3 @@ class ClockTest(unittest.TestCase):
def test_full_clock_and_zeroed_clock(self): def test_full_clock_and_zeroed_clock(self):
self.assertEqual(Clock(24, 0), Clock(0, 0)) self.assertEqual(Clock(24, 0), Clock(0, 0))
if __name__ == "__main__":
unittest.main()

View File

@@ -9,5 +9,3 @@ class {{ exercise | camel_case }}Test(unittest.TestCase):
self.assertEqual(cipher_text(value), expected) self.assertEqual(cipher_text(value), expected)
{% endfor %} {% endfor %}
{{ macros.footer() }}

View File

@@ -51,7 +51,3 @@ class CryptoSquareTest(unittest.TestCase):
value = "If man was meant to stay on the ground, god would have given us roots." value = "If man was meant to stay on the ground, god would have given us roots."
expected = "imtgdvs fearwer mayoogo anouuio ntnnlvt wttddes aohghn sseoau " expected = "imtgdvs fearwer mayoogo anouuio ntnnlvt wttddes aohghn sseoau "
self.assertEqual(cipher_text(value), expected) self.assertEqual(cipher_text(value), expected)
if __name__ == "__main__":
unittest.main()

View File

@@ -45,4 +45,3 @@ class {{ class_name }}Test(unittest.TestCase):
{% endfor %} {% endfor %}
{% endfor %} {% endfor %}
{{ macros.footer() }}

View File

@@ -212,7 +212,3 @@ class CustomSetTest(unittest.TestCase):
set2 = CustomSet([2, 3]) set2 = CustomSet([2, 3])
expected = CustomSet([3, 2, 1]) expected = CustomSet([3, 2, 1])
self.assertEqual(set1 + set2, expected) self.assertEqual(set1 + set2, expected)
if __name__ == "__main__":
unittest.main()

View File

@@ -6,5 +6,3 @@ class {{ exercise | camel_case }}Test(unittest.TestCase):
def test_{{ case["description"] | to_snake }}(self): def test_{{ case["description"] | to_snake }}(self):
self.assertEqual({{ case["property"] }}({{ case["input"]["x"] }}, {{ case["input"]["y"] }}), {{ case["expected"] }}) self.assertEqual({{ case["property"] }}({{ case["input"]["x"] }}, {{ case["input"]["y"] }}), {{ case["expected"] }})
{% endfor %} {% endfor %}
{{ macros.footer() }}

View File

@@ -46,7 +46,3 @@ class DartsTest(unittest.TestCase):
def test_asymmetric_position_between_the_inner_and_middle_circles(self): def test_asymmetric_position_between_the_inner_and_middle_circles(self):
self.assertEqual(score(0.5, -4), 5) self.assertEqual(score(0.5, -4), 5)
if __name__ == "__main__":
unittest.main()