mirror of
https://github.com/dtomlinson91/panaetius.git
synced 2025-12-21 20:55:43 +00:00
27 lines
733 B
Python
27 lines
733 B
Python
import pytest
|
|
|
|
|
|
@pytest.fixture()
|
|
def header():
|
|
return "panaetius_testing"
|
|
|
|
|
|
@pytest.fixture()
|
|
def testing_config_contents():
|
|
return {
|
|
"panaetius_testing": {
|
|
"some_top_string": "some_top_value",
|
|
"second": {
|
|
"some_second_string": "some_second_value",
|
|
"some_second_int": 1,
|
|
"some_second_float": 1.0,
|
|
"some_second_list": ["some", "second", "value"],
|
|
"some_second_table": {"first": ["some", "first", "value"]},
|
|
"some_second_table_bools": {"bool": [True, False]},
|
|
"third": {
|
|
"some_third_string": "some_third_value",
|
|
},
|
|
},
|
|
}
|
|
}
|