1"""Integration tests for Gransy"""
2from unittest import TestCase
3
4from lexicon.tests.providers.integration_tests import IntegrationTestsV2
5
6
7# Hook into testing framework by inheriting unittest.TestCase and reuse
8# the tests which *each and every* implementation of the interface must
9# pass, by inheritance from integration_tests.IntegrationTests
10class GransyProviderTests(TestCase, IntegrationTestsV2):
11    """TestCase for Gransy"""
12
13    provider_name = "gransy"
14    domain = "oldium.xyz"
15