Adafruit_IO_Python/tests/test_setup.py
2014-05-27 11:23:53 -05:00

12 lines
203 B
Python

import pytest
from Adafruit_IO import Client
def teardown_module(module):
pass
class TestSetup:
def test_set_key(self):
key = "unique_key_id"
io = Client(key)
assert key == io.key