1
0
Fork 0

Removed useless testing boilerplate

This commit is contained in:
Julien Dessaux 2024-02-03 00:29:42 +01:00
parent 2b0e9e25ff
commit 8048ef0c75
Signed by: adyxax
GPG key ID: F92E51B86E07177E
7 changed files with 0 additions and 25 deletions

View file

@ -457,9 +457,6 @@ pub const Field = struct {
}
};
test "all" {
std.testing.refAllDecls(@This());
}
test "hello" {
var hello = std.io.fixedBufferStream("64+\"!dlroW ,olleH\">:#,_@\n");
var f = try Field.init_from_reader(std.testing.allocator, hello.reader());

View file

@ -41,7 +41,3 @@ pub const Interpreter = struct {
return null;
}
};
test "all" {
std.testing.refAllDecls(@This());
}

View file

@ -80,7 +80,3 @@ pub fn context(reader: anytype, writer: anytype) Context(@TypeOf(reader), @TypeO
.writer = writer,
};
}
test "all" {
std.testing.refAllDecls(@This());
}

View file

@ -25,9 +25,6 @@ pub fn main() anyerror!void {
const testTimestamp: i64 = 1660681247;
test "all" {
std.testing.refAllDecls(@This());
}
test "sanity" {
var file = try std.fs.cwd().openFile("mycology/sanity.bf", .{});
defer file.close();

View file

@ -445,9 +445,6 @@ pub const Pointer = struct {
const testTimestamp: i64 = 1660681247;
test "all" {
std.testing.refAllDecls(@This());
}
test "minimal" {
var minimal = std.io.fixedBufferStream("@");
var f = try field.Field.init_from_reader(std.testing.allocator, minimal.reader());

View file

@ -157,7 +157,3 @@ pub const Stack = struct {
}
}
};
test "all" {
std.testing.refAllDecls(@This());
}

View file

@ -174,7 +174,3 @@ pub const StackStack = struct {
return self.toss;
}
};
test "all" {
std.testing.refAllDecls(@This());
}