Skip to content

Commit 6460f6a

Browse files
committed
Update README and example
1 parent 2a36e75 commit 6460f6a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import Testing
22
@testable import MiddlewareClientWithSQLCipher
33

4-
@Test func example() async throws {
4+
@Test func testDatabaseIsSQLCipher() async throws {
55
#expect(databaseVerison() == "SQLCipher 4.8.0 community")
66
}
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import Testing
22
@testable import MiddlewareClientWithoutSQLCipher
33

4-
@Test func example() async throws {
4+
@Test func testDatabaseIsSQLite() async throws {
55
#expect(databaseVerison() == "SQLite3 3.43.2")
66
}

Examples/PackageTraits/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ A dependent of `SQLMiddleware` that enables the `SQLCipher` trait.
9797
It contains a test case:
9898

9999
```swift
100-
@Test func example() async throws {
100+
@Test func testDatabaseIsSQLCipher() async throws {
101101
#expect(databaseVerison() == "SQLCipher 4.8.0 community")
102102
}
103103
```
@@ -109,7 +109,7 @@ A dependent of `SQLMiddleware` that does not enable the `SQLCipher` trait. It i
109109
It contains a test case:
110110

111111
```swift
112-
@Test func example() async throws {
112+
@Test func testDatabaseIsSQLite() async throws {
113113
#expect(databaseVerison() == "SQLite3 3.43.2")
114114
}
115115
```

0 commit comments

Comments
 (0)