mirror of
https://github.com/deepset-ai/haystack.git
synced 2025-07-19 06:52:56 +00:00

* rearrange code * fix tests * relnote * merge test modules * remove extra * rearrange draw tests * forgot * remove unused import
30 lines
916 B
Python
30 lines
916 B
Python
# SPDX-FileCopyrightText: 2022-present deepset GmbH <info@deepset.ai>
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
from haystack.testing.sample_components import Concatenate
|
|
from haystack.core.serialization import component_to_dict, component_from_dict
|
|
|
|
|
|
def test_input_lists():
|
|
component = Concatenate()
|
|
res = component.run(first=["This"], second=["That"])
|
|
assert res == {"value": ["This", "That"]}
|
|
|
|
|
|
def test_input_strings():
|
|
component = Concatenate()
|
|
res = component.run(first="This", second="That")
|
|
assert res == {"value": ["This", "That"]}
|
|
|
|
|
|
def test_input_first_list_second_string():
|
|
component = Concatenate()
|
|
res = component.run(first=["This"], second="That")
|
|
assert res == {"value": ["This", "That"]}
|
|
|
|
|
|
def test_input_first_string_second_list():
|
|
component = Concatenate()
|
|
res = component.run(first="This", second=["That"])
|
|
assert res == {"value": ["This", "That"]}
|