import pytest

#
@pytest.fixture
def spam():
    return 1


def test_sample(spam):
    spam.bit_length
