2.4.3 #9

Merged
rune merged 14 commits from 2.4.3 into main 2026-07-27 08:13:22 +02:00
4 changed files with 18 additions and 34 deletions
Showing only changes of commit 8c7fb59d41 - Show all commits
-26
View File
@@ -1,26 +0,0 @@
// swift-tools-version: 6.2
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "oAI",
products: [
// Products define the executables and libraries a package produces, making them visible to other packages.
.library(
name: "oAI",
targets: ["oAI"]
),
],
targets: [
// Targets are the basic building blocks of a package, defining a module or a test suite.
// Targets can depend on other targets in this package and products from dependencies.
.target(
name: "oAI"
),
.testTarget(
name: "oAITests",
dependencies: ["oAI"]
),
]
)
-2
View File
@@ -1,2 +0,0 @@
// The Swift Programming Language
// https://docs.swift.org/swift-book
-6
View File
@@ -1,6 +0,0 @@
import Testing
@testable import oAI
@Test func example() async throws {
// Write your test here and use APIs like `#expect(...)` to check expected conditions.
}
+18
View File
@@ -0,0 +1,18 @@
//
// oAITests.swift
// oAITests
//
// Created by Rune Olsen on 23/07/2026.
//
import Testing
struct oAITests {
@Test func example() async throws {
// Write your test here and use APIs like `#expect(...)` to check expected conditions.
// Swift Testing Documentation
// https://developer.apple.com/documentation/testing
}
}