mirror of
https://github.com/maxgoedjen/secretive.git
synced 2025-04-18 05:22:11 +00:00
33 lines
638 B
Swift
33 lines
638 B
Swift
import XCTest
|
|
@testable import Brief
|
|
|
|
class ReleaseParsingTests: XCTestCase {
|
|
|
|
func testNonCritical() {
|
|
|
|
}
|
|
|
|
func testCritical() {
|
|
|
|
}
|
|
|
|
func testOSGreaterThanMinimum() {
|
|
|
|
}
|
|
|
|
func testOSLessThanMinimum() {
|
|
|
|
}
|
|
|
|
func testGreatestSelectedIfOldPatchIsPublishedLater() {
|
|
// If 2.x.x series has been published, and a patch for 1.x.x is issued
|
|
// 2.x.x should still be selected if user can run it.
|
|
}
|
|
|
|
func testLatestVersionIsRunnable() {
|
|
// If the 2.x.x series has been published but the user can't run it
|
|
// the last version the user can run should be selected.
|
|
}
|
|
|
|
}
|