expressly/expressly-plugin-sdk-python3-core

View on GitHub
expressly/tests/api/test_register.py

Summary

Maintainability
A
0 mins
Test Coverage
from unittest import TestCase
from expressly import Api
from expressly.tests import dummy_api_key, api_dev_url


class RegisterTest(TestCase):
    def setUp(self):
        self.api = Api(dummy_api_key, api_dev_url, False)

    def test_request(self):
        self.assertTrue(True)