mirror of
https://github.com/rjNemo/mars-rover-kata
synced 2026-06-10 20:56:44 +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")
|