16 lines
432 B
Swift
16 lines
432 B
Swift
import ClawdbotKit
|
|
import Foundation
|
|
import Testing
|
|
|
|
@Suite struct CanvasSnapshotFormatTests {
|
|
@Test func acceptsJpgAlias() throws {
|
|
struct Wrapper: Codable {
|
|
var format: ClawdbotCanvasSnapshotFormat
|
|
}
|
|
|
|
let data = try #require("{\"format\":\"jpg\"}".data(using: .utf8))
|
|
let decoded = try JSONDecoder().decode(Wrapper.self, from: data)
|
|
#expect(decoded.format == .jpeg)
|
|
}
|
|
}
|