10 lines
294 B
Python
10 lines
294 B
Python
|
|
def test_configuration(cmd):
|
|
if cmd.model == "nanos":
|
|
assert cmd.get_configuration() == (14, 1, 9, 20)
|
|
|
|
if cmd.model == "nanox":
|
|
assert cmd.get_configuration() == (14, 1, 9, 20)
|
|
|
|
if cmd.model == "nanosp":
|
|
assert cmd.get_configuration() == (14, 1, 9, 20) |