def test_auth_store(dummy_auth):
"""Is the authentication properly stored into a file?"""
buffer = StringIO()
dummy_auth.dump(buffer)
data = yaml.load(buffer.getvalue())
assert data == attr.asdict(dummy_auth)
# Function tests
# # Dependency resolution tests
评论列表
文章目录