20 lines
345 B
Swift
20 lines
345 B
Swift
//
|
|
// MeowTests.swift
|
|
// MeowTests
|
|
//
|
|
|
|
import Foundation
|
|
import Testing
|
|
@testable import Meow
|
|
|
|
@Suite("Meow Tests")
|
|
struct MeowTests {
|
|
private let baseURL = URL(string: "https://meow.meow")!
|
|
|
|
@Test
|
|
func constructor() async throws {
|
|
let instance = Meow(baseURL: baseURL)
|
|
#expect(instance.baseURL == baseURL)
|
|
}
|
|
}
|