mirror of
https://github.com/rjNemo/mars-rover-kata
synced 2026-06-06 02:36:48 +00:00
8 lines
117 B
Python
8 lines
117 B
Python
import pytest as pytest
|
|
|
|
from rover.rover import Rover
|
|
|
|
|
|
@pytest.fixture
|
|
def rover():
|
|
return Rover(0, 0, "EAST")
|