feat: Renames quick calc routes / views to ductulator. Adds button to home page for using ductulator, needs added to navbar still.

This commit is contained in:
2026-02-09 16:36:24 -05:00
parent 007d13be2f
commit 06b663052e
10 changed files with 235 additions and 137 deletions

View File

@@ -28,13 +28,13 @@ struct ViewControllerTests {
}
@Test
func quickCalc() async throws {
func ductulator() async throws {
try await withDependencies {
$0.viewController = .liveValue
$0.auth = .failing
} operation: {
@Dependency(\.viewController) var viewController
let view = try await viewController.view(.test(.quickCalc(.index)))
let view = try await viewController.view(.test(.ductulator(.index)))
assertSnapshot(of: view, as: .html)
}
}