Skip to content

Commit

Permalink
added comments
Browse files Browse the repository at this point in the history
Merge branch 'tdl-7499' of github.com:singer-io/tap-salesforce into tdl-7499
  • Loading branch information
bhuvana-talend committed Jul 21, 2023
2 parents 410d972 + f73479c commit 8d48a2d
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions tests/test_table_reset.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import os
from sfbase import SFBaseTest
from tap_tester.base_suite_tests.table_reset_test import TableResetTest


class SFTableResetTest(TableResetTest, SFBaseTest):
"""tap-salesforce Table reset test implementation
Currently tests only the stream with Incremental replication method"""

@staticmethod
def name():
return "tt_sf_table_reset"

def streams_to_test(self):
return ({'Account', 'Contact', 'User'})

@property
def reset_stream(self):
return ('User')

0 comments on commit 8d48a2d

Please sign in to comment.