diff --git a/tests/Review/Rule/NoExtraBooleanComparison.elm b/tests/NoExtraBooleanComparison.elm similarity index 97% rename from tests/Review/Rule/NoExtraBooleanComparison.elm rename to tests/NoExtraBooleanComparison.elm index 2a9d3ebf..fbbfc14e 100644 --- a/tests/Review/Rule/NoExtraBooleanComparison.elm +++ b/tests/NoExtraBooleanComparison.elm @@ -1,4 +1,4 @@ -module Review.Rule.NoExtraBooleanComparison exposing (rule) +module NoExtraBooleanComparison exposing (rule) {-| Forbid the use of boolean comparisons that can be simplified. diff --git a/tests/NoExtraBooleanComparisonTest.elm b/tests/NoExtraBooleanComparisonTest.elm index a0ee1c4d..74be901a 100644 --- a/tests/NoExtraBooleanComparisonTest.elm +++ b/tests/NoExtraBooleanComparisonTest.elm @@ -1,6 +1,6 @@ module NoExtraBooleanComparisonTest exposing (all) -import Review.Rule.NoExtraBooleanComparison exposing (rule) +import NoExtraBooleanComparison exposing (rule) import Review.Test exposing (ReviewResult) import Test exposing (Test, describe, test) diff --git a/tests/Review/Rule/NoImportingEverything.elm b/tests/NoImportingEverything.elm similarity index 97% rename from tests/Review/Rule/NoImportingEverything.elm rename to tests/NoImportingEverything.elm index eab5de52..929c832f 100644 --- a/tests/Review/Rule/NoImportingEverything.elm +++ b/tests/NoImportingEverything.elm @@ -1,4 +1,4 @@ -module Review.Rule.NoImportingEverything exposing (rule, Configuration) +module NoImportingEverything exposing (rule, Configuration) {-| Forbid importing everything from a module. diff --git a/tests/NoImportingEverythingTest.elm b/tests/NoImportingEverythingTest.elm index d470f021..bfd94318 100644 --- a/tests/NoImportingEverythingTest.elm +++ b/tests/NoImportingEverythingTest.elm @@ -1,6 +1,6 @@ module NoImportingEverythingTest exposing (all) -import Review.Rule.NoImportingEverything exposing (Configuration, rule) +import NoImportingEverything exposing (Configuration, rule) import Review.Test exposing (ReviewResult) import Test exposing (Test, describe, test) diff --git a/tests/Review/Rule/NoUnusedTypeConstructors.elm b/tests/NoUnusedTypeConstructors.elm similarity index 99% rename from tests/Review/Rule/NoUnusedTypeConstructors.elm rename to tests/NoUnusedTypeConstructors.elm index 85290529..f395e62e 100644 --- a/tests/Review/Rule/NoUnusedTypeConstructors.elm +++ b/tests/NoUnusedTypeConstructors.elm @@ -1,4 +1,4 @@ -module Review.Rule.NoUnusedTypeConstructors exposing (rule) +module NoUnusedTypeConstructors exposing (rule) {-| Forbid having unused custom type constructors in a file. diff --git a/tests/NoUnusedTypeConstructorsTest.elm b/tests/NoUnusedTypeConstructorsTest.elm index 36fd9ef4..e2c5cd2f 100644 --- a/tests/NoUnusedTypeConstructorsTest.elm +++ b/tests/NoUnusedTypeConstructorsTest.elm @@ -1,6 +1,6 @@ module NoUnusedTypeConstructorsTest exposing (all) -import Review.Rule.NoUnusedTypeConstructors exposing (rule) +import NoUnusedTypeConstructors exposing (rule) import Review.Test exposing (ReviewResult) import Test exposing (Test, describe, test)