Fix plurality on sats

This commit is contained in:
2023-04-29 14:56:47 -04:00
committed by William Casarin
parent 0f89d98513
commit 34970b38bb
5 changed files with 73 additions and 3 deletions

View File

@@ -31,6 +31,17 @@ final class ProfileViewTests: XCTestCase {
}
}
func testFollowingCountString() throws {
XCTAssertEqual(followingCountString(0, locale: enUsLocale), "Following")
XCTAssertEqual(followingCountString(1, locale: enUsLocale), "Following")
XCTAssertEqual(followingCountString(2, locale: enUsLocale), "Following")
Bundle.main.localizations.map { Locale(identifier: $0) }.forEach {
for count in 1...10 {
XCTAssertNoThrow(followingCountString(count, locale: $0))
}
}
}
func testRelaysCountString() throws {
XCTAssertEqual(relaysCountString(0, locale: enUsLocale), "Relays")
XCTAssertEqual(relaysCountString(1, locale: enUsLocale), "Relay")