mirror of
https://github.com/sinseman44/PyCNC.git
synced 2026-02-26 09:59:25 +00:00
remove absolete test
This commit is contained in:
@@ -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"))
|
||||
|
||||
Reference in New Issue
Block a user