Scrapegraph-ai/tests/test_convert_to_csv.py
2024-02-13 12:30:35 +01:00

19 lines
594 B
Python

"""Module for testing convert_to_json inside the folder yosoai/convert_to_json.py"""
import unittest
from yosoai.convert_to_csv import convert_to_csv
class TestConvertToCsvFunction(unittest.TestCase):
"""
class for testing convert_to_json inside the folder yosoai/convert_to_json.py
"""
def test_get_json(self):
"""
function for testing convert_to_json inside the folder yosoai/convert_to_json.py
"""
example = {"trial": [1, 2, 3]}
filename = "result"
path = "../YOSO-ai/tests"
convert_to_csv(example, filename, path)