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