23 lines
536 B
Python
23 lines
536 B
Python
"""Tests standard tap features using the built-in SDK tests library."""
|
|
|
|
import datetime
|
|
|
|
from singer_sdk.testing import get_tap_test_class
|
|
|
|
from tap_personio.tap import TapPersonio
|
|
|
|
SAMPLE_CONFIG = {
|
|
"start_date": datetime.datetime.now(datetime.timezone.utc).strftime("%Y-%m-%d"),
|
|
# TODO: Initialize minimal tap config
|
|
}
|
|
|
|
|
|
# Run standard built-in tap tests from the SDK:
|
|
TestTapPersonio = get_tap_test_class(
|
|
tap_class=TapPersonio,
|
|
config=SAMPLE_CONFIG,
|
|
)
|
|
|
|
|
|
# TODO: Create additional tests as appropriate for your tap.
|