forked from rc/aircox
20 lines
272 B
Python
20 lines
272 B
Python
import pytest
|
|
|
|
from aircox.controllers.diffusions import Diffusions
|
|
|
|
|
|
@pytest.fixture
|
|
def diffusions():
|
|
return Diffusions
|
|
|
|
|
|
class TestDiffusion:
|
|
def test___init__(self):
|
|
pass
|
|
|
|
def test_update(self):
|
|
pass
|
|
|
|
def test_clean(self):
|
|
pass
|