@@ -24,31 +24,31 @@ final class IndiePitcherSwiftTests: XCTestCase {
24
24
25
25
func testSendTransactionalEmailMarkdown( ) async throws {
26
26
27
- try await indiePitcher. sendEmail ( data: . init( to: " petr@indiepitcher .com " ,
27
+ try await indiePitcher. sendEmail ( data: . init( to: " petr@example .com " ,
28
28
subject: " Test email from IP Swift SDK unit tests " ,
29
29
body: " This is a test body that supports **markdown**. " ,
30
30
bodyFormat: . markdown) )
31
31
}
32
32
33
33
func testGetMailingLists( ) async throws {
34
34
let listsResponse = try await indiePitcher. listMailingLists ( )
35
- expect ( listsResponse. metadata. total) == 2
36
- expect ( listsResponse. data. count) == 2
35
+ expect ( listsResponse. metadata. total) == 3
36
+ expect ( listsResponse. data. count) == 3
37
37
}
38
38
39
39
func testSendMarketingEmailToList( ) async throws {
40
40
try await indiePitcher. sendEmailToMailingList ( data: . init( subject: " Test marketing email from IP Swift SDK unit tests " ,
41
41
body: " This is a test body of a marketing email that supports **markdown**. " ,
42
42
bodyFormat: . markdown,
43
- list: " test_list_1 " ) )
43
+ list: " integration-tests " ) )
44
44
}
45
45
46
46
func testSendEmailToContact( ) async throws {
47
- try await indiePitcher. sendEmailToContact ( data: . init( contactEmail: " petr@indiepitcher .com " ,
47
+ try await indiePitcher. sendEmailToContact ( data: . init( contactEmail: " petr@example .com " ,
48
48
subject: " Test personalized contact email from IP Swift SDK unit tests " ,
49
49
body: " This is a test body of a personalized transactional email that supports **markdown**. " ,
50
50
bodyFormat: . markdown,
51
- list: " test_list_1 " ,
51
+ list: " integration-tests " ,
52
52
delaySeconds: 60 ) )
53
53
}
54
54
@@ -60,6 +60,13 @@ final class IndiePitcherSwiftTests: XCTestCase {
60
60
try await indiePitcher. deleteContact ( email: email)
61
61
}
62
62
63
+ func testAddMultipleContacts( ) async throws {
64
+
65
+ try await indiePitcher
. addContacts ( contacts
: [ . init
( email
: " [email protected] " ) , . init
( email
: " [email protected] " ) ] )
66
+ try await indiePitcher
. deleteContact ( email
: " [email protected] " )
67
+ try await indiePitcher
. deleteContact ( email
: " [email protected] " )
68
+ }
69
+
63
70
func testCreatePortalSession( ) async throws {
64
71
_
= try await indiePitcher
. createMailingListsPortalSession ( contactEmail
: " [email protected] " , returnURL
: . init
( string
: " https://indiepitcher.com " ) !
)
65
72
}
0 commit comments