We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d4a2cd commit 4d4d3ebCopy full SHA for 4d4d3eb
Tests/SteamPressTests/AdminTests/AdminPostTests.swift
@@ -535,6 +535,12 @@ class AdminPostTests: XCTestCase {
535
let post = try createPostViaRequest(title: title)
536
XCTAssertEqual(expectedSlugUrl, post.slugUrl)
537
}
538
+
539
+ func testRandomStringHelperDoesntProduceTheSameStringKinda() throws {
540
+ let string1 = try String.random()
541
+ let string2 = try String.random()
542
+ XCTAssertNotEqual(string1, string2)
543
+ }
544
545
// MARK: - Helpers
546
0 commit comments