From 2d1e5bbc7ea3ec102ff3ee99fc85cda1c5302246 Mon Sep 17 00:00:00 2001 From: Irmen de Jong Date: Mon, 8 Nov 2021 17:00:10 +0100 Subject: [PATCH] remove unimportant empty tests --- compiler/test/ModuleImporterTests.kt | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/compiler/test/ModuleImporterTests.kt b/compiler/test/ModuleImporterTests.kt index 687a57bea..362c22de2 100644 --- a/compiler/test/ModuleImporterTests.kt +++ b/compiler/test/ModuleImporterTests.kt @@ -39,21 +39,6 @@ class TestModuleImporter: FunSpec({ return makeImporter(errors, searchIn.asList()) } - context("Constructor") { - - //Disabled("TODO: invalid entries in search list") - xtest("testInvalidEntriesInSearchList") { - } - - //Disabled("TODO: literal duplicates in search list") - xtest("testLiteralDuplicatesInSearchList") { - } - - //Disabled("TODO: factual duplicates in search list") - xtest("testFactualDuplicatesInSearchList") { - } - } - context("ImportModule") { context("WithInvalidPath") { @@ -159,12 +144,6 @@ class TestModuleImporter: FunSpec({ module.program shouldBe program } - //Disabled("TODO: relative to 2nd in search list") - xtest("testRelativeTo2ndDirInSearchList") {} - - //Disabled("TODO: ambiguous - 2 or more really different candidates") - xtest("testAmbiguousCandidates") {} - context("WithBadFile") { test("testWithSyntaxError") { val searchIn = assumeDirectory("./", workingDir.relativize(fixturesDir))