10 lines
220 B
Python
Executable File
10 lines
220 B
Python
Executable File
# This module defines fixtures which are shared for all tests of motor "lin1".
|
|
|
|
import pytest
|
|
from setup.classes import MasterMACS
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def motor():
|
|
return MasterMACS('masterMacs1', 'ax1')
|