Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add tests for decimal128 and timestamp #78

Merged
merged 12 commits into from
Feb 4, 2025
Prev Previous commit
Next Next commit
Skip JSON fuzzing for now
AlekSi committed Jan 31, 2025
commit bc89025e14012d04d3ebe89d3ce5bf83481180f9
4 changes: 4 additions & 0 deletions wirebson/bson_test.go
Original file line number Diff line number Diff line change
@@ -1298,6 +1298,10 @@ func testRawDocument(t *testing.T, rawDoc RawDocument) {
})

t.Run("MarshalUnmarshal", func(t *testing.T) {
// TODO https://github.com/FerretDB/wire/issues/49
// See https://jira.mongodb.org/browse/GODRIVER-3476
t.Skip("https://github.com/FerretDB/wire/issues/49")

doc, err := rawDoc.DecodeDeep()
if err != nil {
return