summaryrefslogtreecommitdiff
path: root/roles/save-cinder-migration-results/templates/migration_results_reporter.py.j2
blob: 805eb33dec6a3423ec775ba4f0c968bfb3521273 (plain)
1
2
3
4
5
6
7
8
9
10
import unittest


class CinderMigrationsMatrixTest(unittest.TestCase):

{% for test_case in migration_test_results %}
    def test__{{ test_case.source }}_to_{{ test_case.destination }}(self):
        self.assertEqual({{ test_case.result }}, 0)

{% endfor %}