Scrapegraph-ai/tests/test_convert_to_json.py
2024-02-15 09:27:50 +01:00

21 lines
642 B
Python

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