remove absolete test

This commit is contained in:
Nikolay Khabarov
2017-07-15 02:33:53 +03:00
parent 803002493d
commit 099dedaabf

View File

@@ -26,13 +26,6 @@ class TestGMachine(unittest.TestCase):
m.do_command(GCode.parse_line("X3Y4Z5E6"))
self.assertEqual(m.position(), Coordinates(3, 4, 5, 6))
def test_release(self):
# release homes head.
m = GMachine()
m.do_command(GCode.parse_line("X1Y2Z3E4"))
m.release()
self.assertEqual(m.position(), Coordinates(0, 0, 0, 4))
def test_safe_zero(self):
m = GMachine()
m.do_command(GCode.parse_line("X1Y2Z3E4"))