blob: 3102767512f7f9982b1c2eafe4f1daa66cfe3231 [file] [log] [blame]
#!/usr/bin/env python
# coding=utf-8
try:
import mock
except ImportError:
import unittest.mock as mock
from marvin_iris_h2o_automl.data_handler import TrainingPreparator
class TestTrainingPreparator:
def test_execute(self, mocked_params):
ac = TrainingPreparator()
ac.execute(params=mocked_params)
assert not ac._params