"""Test for cable consts.""" from flows.cable_calculation import splits from tests.fixtures import stores def test_init(): """Test Store constructor.""" store_data = stores.get_sample_store_data() store = splits.Store(**store_data) assert store.id is store_data.get('id') assert store.name is store_data.get('name') assert store.provider_ids is store_data.get('provider_ids')