diff --git a/base/schema-pike/test/inputs/schema/all-of-additional-properties-false.schema/default/TopLevel.pmod b/base/schema-pike/test/inputs/schema/all-of-additional-properties-false.schema/default/TopLevel.pmod
deleted file mode 100644
index 8176560..0000000
--- a/base/schema-pike/test/inputs/schema/all-of-additional-properties-false.schema/default/TopLevel.pmod
+++ /dev/null
@@ -1,61 +0,0 @@
-// This source has been automatically generated by quicktype.
-// ( https://github.com/quicktype/quicktype )
-//
-// To use this code, simply import it into your project as a Pike module.
-// To JSON-encode your object, you can pass it to `Standards.JSON.encode`
-// or call `encode_json` on it.
-//
-// To decode a JSON string, first pass it to `Standards.JSON.decode`,
-// and then pass the result to `<YourClass>_from_JSON`.
-// It will return an instance of <YourClass>.
-// Bear in mind that these functions have unexpected behavior,
-// and will likely throw an error, if the JSON string does not
-// match the expected interface, even if the JSON itself is valid.
-
-class TopLevel {
-    float        amount;      // json: "amount"
-    Frequency    frequency;   // json: "frequency"
-    mixed|string description; // json: "description"
-    Type         type;        // json: "type"
-
-    string encode_json() {
-        mapping(string:mixed) json = ([
-            "amount" : amount,
-            "frequency" : frequency,
-            "description" : description,
-            "type" : type,
-        ]);
-
-        return Standards.JSON.encode(json);
-    }
-}
-
-TopLevel TopLevel_from_JSON(mixed json) {
-    TopLevel retval = TopLevel();
-
-    retval.amount = json["amount"];
-    retval.frequency = json["frequency"];
-    retval.description = json["description"];
-    retval.type = json["type"];
-
-    return retval;
-}
-
-enum Frequency {
-    WEEKLY = "Weekly",     // json: "Weekly"
-    MONTHLY = "Monthly",   // json: "Monthly"
-    ANNUALLY = "Annually", // json: "Annually"
-}
-
-Frequency Frequency_from_JSON(mixed json) {
-    return json;
-}
-
-enum Type {
-    GROSS_SALARY_AMOUNT = "GrossSalaryAmount", // json: "GrossSalaryAmount"
-    OVERTIME = "Overtime",                     // json: "Overtime"
-}
-
-Type Type_from_JSON(mixed json) {
-    return json;
-}
diff --git a/base/schema-pike/test/inputs/schema/const-non-string.schema/default/TopLevel.pmod b/base/schema-pike/test/inputs/schema/const-non-string.schema/default/TopLevel.pmod
deleted file mode 100644
index cc8a42c..0000000
--- a/base/schema-pike/test/inputs/schema/const-non-string.schema/default/TopLevel.pmod
+++ /dev/null
@@ -1,53 +0,0 @@
-// This source has been automatically generated by quicktype.
-// ( https://github.com/quicktype/quicktype )
-//
-// To use this code, simply import it into your project as a Pike module.
-// To JSON-encode your object, you can pass it to `Standards.JSON.encode`
-// or call `encode_json` on it.
-//
-// To decode a JSON string, first pass it to `Standards.JSON.decode`,
-// and then pass the result to `<YourClass>_from_JSON`.
-// It will return an instance of <YourClass>.
-// Bear in mind that these functions have unexpected behavior,
-// and will likely throw an error, if the JSON string does not
-// match the expected interface, even if the JSON itself is valid.
-
-class TopLevel {
-    int   amount;  // json: "amount"
-    bool  enabled; // json: "enabled"
-    Kind  kind;    // json: "kind"
-    float ratio;   // json: "ratio"
-    float version; // json: "version"
-
-    string encode_json() {
-        mapping(string:mixed) json = ([
-            "amount" : amount,
-            "enabled" : enabled,
-            "kind" : kind,
-            "ratio" : ratio,
-            "version" : version,
-        ]);
-
-        return Standards.JSON.encode(json);
-    }
-}
-
-TopLevel TopLevel_from_JSON(mixed json) {
-    TopLevel retval = TopLevel();
-
-    retval.amount = json["amount"];
-    retval.enabled = json["enabled"];
-    retval.kind = json["kind"];
-    retval.ratio = json["ratio"];
-    retval.version = json["version"];
-
-    return retval;
-}
-
-enum Kind {
-    WIDGET = "widget", // json: "widget"
-}
-
-Kind Kind_from_JSON(mixed json) {
-    return json;
-}
diff --git a/base/schema-pike/test/inputs/schema/issue2680-top-level-array.schema/default/TopLevel.pmod b/base/schema-pike/test/inputs/schema/issue2680-top-level-array.schema/default/TopLevel.pmod
deleted file mode 100644
index 7ac1adf..0000000
--- a/base/schema-pike/test/inputs/schema/issue2680-top-level-array.schema/default/TopLevel.pmod
+++ /dev/null
@@ -1,19 +0,0 @@
-// This source has been automatically generated by quicktype.
-// ( https://github.com/quicktype/quicktype )
-//
-// To use this code, simply import it into your project as a Pike module.
-// To JSON-encode your object, you can pass it to `Standards.JSON.encode`
-// or call `encode_json` on it.
-//
-// To decode a JSON string, first pass it to `Standards.JSON.decode`,
-// and then pass the result to `<YourClass>_from_JSON`.
-// It will return an instance of <YourClass>.
-// Bear in mind that these functions have unexpected behavior,
-// and will likely throw an error, if the JSON string does not
-// match the expected interface, even if the JSON itself is valid.
-
-typedef array(int) TopLevel;
-
-TopLevel TopLevel_from_JSON(mixed json) {
-    return json;
-}
diff --git a/base/schema-pike/test/inputs/schema/optional-any.schema/default/TopLevel.pmod b/base/schema-pike/test/inputs/schema/optional-any.schema/default/TopLevel.pmod
deleted file mode 100644
index e501fb6..0000000
--- a/base/schema-pike/test/inputs/schema/optional-any.schema/default/TopLevel.pmod
+++ /dev/null
@@ -1,36 +0,0 @@
-// This source has been automatically generated by quicktype.
-// ( https://github.com/quicktype/quicktype )
-//
-// To use this code, simply import it into your project as a Pike module.
-// To JSON-encode your object, you can pass it to `Standards.JSON.encode`
-// or call `encode_json` on it.
-//
-// To decode a JSON string, first pass it to `Standards.JSON.decode`,
-// and then pass the result to `<YourClass>_from_JSON`.
-// It will return an instance of <YourClass>.
-// Bear in mind that these functions have unexpected behavior,
-// and will likely throw an error, if the JSON string does not
-// match the expected interface, even if the JSON itself is valid.
-
-class TopLevel {
-    bool  bar; // json: "bar"
-    mixed foo; // json: "foo"
-
-    string encode_json() {
-        mapping(string:mixed) json = ([
-            "bar" : bar,
-            "foo" : foo,
-        ]);
-
-        return Standards.JSON.encode(json);
-    }
-}
-
-TopLevel TopLevel_from_JSON(mixed json) {
-    TopLevel retval = TopLevel();
-
-    retval.bar = json["bar"];
-    retval.foo = json["foo"];
-
-    return retval;
-}
