Skip to content

Commit

Permalink
remove absolete test
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikolay-Kha committed Jul 14, 2017
1 parent 8030024 commit 099deda
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions tests/test_gmachine.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,6 @@ def test_reset(self):
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"))
Expand Down

0 comments on commit 099deda

Please sign in to comment.