mirror of
https://github.com/nicoverbruggen/phpmon.git
synced 2025-08-07 20:10:08 +02:00
31 lines
618 B
Swift
31 lines
618 B
Swift
//
|
|
// ValetRcTest.swift
|
|
// Unit Tests
|
|
//
|
|
// Created by Nico Verbruggen on 20/01/2023.
|
|
// Copyright © 2023 Nico Verbruggen. All rights reserved.
|
|
//
|
|
|
|
import XCTest
|
|
|
|
class ValetRcTest: XCTestCase {
|
|
|
|
// MARK: - Test Files
|
|
|
|
static var path: URL {
|
|
return Bundle(for: Self.self)
|
|
.url(forResource: "valetrc", withExtension: "rc")!
|
|
}
|
|
|
|
// MARK: - Tests
|
|
|
|
func test_can_extract_fields_from_valetrc_file() throws {
|
|
// TODO: Load the path and get the fields
|
|
}
|
|
|
|
func test_skip_invalid_fields_valetrc_file() throws {
|
|
// TODO: Load the path and throw error
|
|
}
|
|
|
|
}
|