Exemplo n.º 1
0
def test_find_category_ids():
    with mock_shed_context() as shed_context:
        category_ids = shed.find_category_ids(
            shed_context.tsi,
            ["Text Manipulation"]
        )
        assert category_ids == ["c1"]
Exemplo n.º 2
0
def test_find_category_ids():
    with mock_shed_context() as shed_context:
        category_ids = shed.find_category_ids(
            shed_context.tsi,
            ["Text Manipulation"]
        )
        assert category_ids == ["c1"]
Exemplo n.º 3
0
def test_find_category_ids():
    with mock_shed_client() as tsi:
        category_ids = shed.find_category_ids(tsi, ["Text Manipulation"])
        assert category_ids == ["c1"]
Exemplo n.º 4
0
def test_find_category_ids():
    with mock_shed_client() as tsi:
        category_ids = shed.find_category_ids(tsi, ["Text Manipulation"])
        assert category_ids == ["c1"]