Mac: finish Moltbot rename (paths)

This commit is contained in:
Shadow
2026-01-27 14:12:47 -06:00
parent cc72498b46
commit c1a7917de7
374 changed files with 0 additions and 18903 deletions

View File

@@ -0,0 +1,21 @@
import Foundation
import Testing
@testable import Moltbot
@Suite
struct ScreenshotSizeTests {
@Test
func readPNGSizeReturnsDimensions() throws {
let pngBase64 =
"iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mP8/x8AAwMCAO+WZxkAAAAASUVORK5CYII="
let data = try #require(Data(base64Encoded: pngBase64))
let size = ScreenshotSize.readPNGSize(data: data)
#expect(size?.width == 1)
#expect(size?.height == 1)
}
@Test
func readPNGSizeRejectsNonPNGData() {
#expect(ScreenshotSize.readPNGSize(data: Data("nope".utf8)) == nil)
}
}