kindwolf.org Git repositories moulti / master tests / test_step_classes.py
master

Tree @master (Download .tar.gz)

test_step_classes.py @masterraw · history · blame

1
2
3
4
5
6
7
8
9
from pathlib import Path
from moulti.app import Moulti
from .common import moulti_test
assert moulti_test

def test_step_classes(moulti_test, monkeypatch):
	css_path = Path('tests/styles/customstate.css').absolute()
	monkeypatch.setattr(Moulti, 'CSS_PATH', str(css_path))
	assert moulti_test(command=['step-classes.bash'])