I have a test that I initially converted as follows to Swift Testing:
@Test func S3Store_Key_readme() throws {
withDependencies {
$0.environment.awsReadmeBucket = { "readme-bucket" }
} operation: {
#expect(try S3Store.Key.readme(owner: "foo", repository: "bar").path == "foo/bar/readme.html")
#expect(try S3Store.Key.readme(owner: "FOO", repository: "bar").path == "foo/bar/readme.html")
}