Bracken
5ac6528bff
Merge pull request #1716 from brackendawson/update-maintainers
...
Propose Christophe Colombier (ccoVeille) as approver
2025-03-24 18:30:37 +01:00
Bracken Dawson
d0e0f4961b
Propose Christophe Colombier (ccoVeille) as approver
2025-03-23 18:36:20 +01:00
Bracken Dawson
b561f16e87
Correct maintainers list
...
arjunmahishi is actually only an approver, at the moment.
2025-03-23 18:33:47 +01:00
Bracken
a948a8c402
Merge pull request #1674 from alexandear/refactor/simplify-with-sprintf-q
...
refactor: use %q and %T to simplify fmt.Sprintf
2025-03-23 14:23:15 +01:00
Bracken
c3915e850a
Merge branch 'master' into refactor/simplify-with-sprintf-q
2025-03-23 14:22:18 +01:00
Bracken
16020e8cbc
Merge pull request #1687 from alexandear/docs-format-go-examples
...
README: apply gofmt to examples
2025-03-23 12:09:57 +01:00
Oleksandr Redko
75df9d50d4
Update mdsf
2025-03-23 12:40:01 +02:00
Oleksandr Redko
33be8f984a
Move to jobs.build
2025-03-23 12:20:44 +02:00
Oleksandr Redko
a9e8aed155
Remove mistakenly added .ci.gofmt.sh
2025-03-23 12:18:52 +02:00
Bracken
3b8bd9bf7d
Merge pull request #1614 from DevotedHealth/mauclair-call-stack-perf
...
Call stack perf change for CallerInfo
2025-03-22 23:13:13 +01:00
Bracken
1e7fb5865a
Merge pull request #1709 from techfg/chore/issue-1621-update-docs
...
chore: update docs for Unset #1621
2025-03-22 12:44:25 +01:00
techfg
c6ac9bb91d
chore: update per PR feedback
2025-03-21 06:25:01 -07:00
Bracken
65f73866c0
Merge pull request #1710 from greg0ire/doc-goroutine-restriction
...
Document consequences of calling t.FailNow()
2025-03-21 13:27:31 +01:00
Grégoire Paris
b1c9368f81
Improve existing docs
2025-03-21 13:21:25 +01:00
Bracken
5a5ac85551
Merge pull request #1062 from lambdanis/fix-fail-message-formatting
...
Fix failure message formatting for Positive and Negative asserts
2025-03-21 10:15:07 +01:00
Bracken
53e0c918d4
Merge branch 'master' into fix-fail-message-formatting
2025-03-21 10:10:08 +01:00
Grégoire Paris
89086b0757
Document consequences of calling t.FailNow()
...
These comments are adapted from t.FailNow()'s own documentation.
Closes #1701
2025-03-19 20:50:44 +01:00
techfg
098128fd10
chore: update docs for Unset #1621
2025-03-18 12:48:09 -07:00
Bracken
f784abc221
Merge pull request #1345 from craig65535/fix-assert-erroras
...
assert.ErrorAs: log target type
2025-03-18 18:04:00 +00:00
Oleksandr Redko
dfda68b86f
Verify formatting of code snippets in CI
2025-01-20 19:49:35 +02:00
Oleksandr Redko
3cf0926564
docs: Format examples in README
2025-01-07 11:35:15 +01:00
Craig Davison
c60c3bd7fb
dereference target
2025-01-03 14:34:16 -07:00
Craig Davison
1c717c00c1
Add return
2024-12-31 15:35:31 -07:00
Craig Davison
ccb5e7f656
Remove redundant returns
2024-12-31 15:26:24 -07:00
Craig Davison
ca6698b8a1
assert.ErrorAs: log target type
2024-12-31 15:09:40 -07:00
Bracken
7c367bb7bc
Merge pull request #1684 from alexandear/refactor-replace-deprecated-ioutil
...
Replace deprecated io/ioutil with io and os
2024-12-21 13:10:41 +00:00
Bracken
e6a990c21d
Merge pull request #1688 from alexandear/docs-fix-typo
...
docs: Fix typo in README
2024-12-21 13:09:58 +00:00
Mike Auclair
cfee2346d7
review feedback
2024-12-17 18:18:56 +00:00
Oleksandr Redko
f8c628e5a1
docs: Fix typo in README
2024-12-16 23:14:16 +02:00
Oleksandr Redko
014ae9a7a4
Replace deprecated io/ioutil with io and os
2024-12-10 14:21:03 +02:00
Oleksandr Redko
30f3cef5ad
Apply suggestions from code review
...
Co-authored-by: Olivier Mengué <dolmen@cpan.org>
2024-12-10 14:08:46 +02:00
Oleksandr Redko
d57bac8721
refactor: use %q to simplify fmt.Sprintf
2024-11-24 18:28:03 +02:00
Bracken
89cbdd9e7b
Merge pull request #1626 from arjun-1/fix-functional-options-diff-indirect-calls
...
fix: compare functional option names for indirect calls
2024-11-12 22:58:45 +00:00
Bracken
07bac606be
Merge pull request #1667 from sikehish/flaky
...
Increase timeouts in Test_Mock_Called_blocks to reduce flakiness in CI
2024-10-28 20:19:38 +00:00
sikehish
716de8dff4
Increase timeouts in Test_Mock_Called_blocks to reduce flakiness in CI
2024-10-29 00:00:56 +05:30
Hisham Akmal
118fb83466
NotSame should fail if args are not pointers #1661 ( #1664 )
...
## Summary
Reduces the confusion assosciated with NotSame that previously would
check nothing if any of the values is not a pointer. The changes made
were tested using TestSame, TestNotSame, and Test_samePointers tests,
and the changes did clear the tests.
## Changes
1. Modified samePointers to return another bool value(ok) that would
determine if the 2 values are of pointer type or not, while the returned
"same" bool value would determine if the 2 pointers are same.
2. Modified assert.NotSame to call Fail() if the 2 values are either
i)pointers pointing to the same address or ii)either/both of the values
are not pointers.
3. Modified assert.Same to call Fail() if the 2 values are either
i)pointers not pointing to the same address or ii)either/both of the
values are not pointers.
4. Modified Test_samePointers to handle the new behavior of samePointers
by checking both if the inputs are pointers (ok) and if they point to
the same object (same).
## Motivation
Ensure NotSame accurately verifies pointer sameness by handling
non-pointer inputs explicitly, improving clarity and reducing potential
misuse.
## Related issues
Closes #1661
---------
Co-authored-by: Bracken <abdawson@gmail.com>
2024-10-28 11:08:04 +00:00
Arjun Dhawan
7d99b2b43d
attempt 2
2024-10-27 08:07:57 +01:00
Arjun Dhawan
05f87c0160
more similar
2024-10-27 08:05:00 +01:00
Arjun Dhawan
ea7129e006
better fmt
2024-10-27 08:02:53 +01:00
Bracken
a1b9c9efe3
Merge pull request #1663 from ybrustin/master
...
Fix issue #1662 (comparing infs should fail)
2024-10-26 19:43:05 +01:00
Bracken
8302de98b1
Merge branch 'master' into master
2024-10-26 19:41:18 +01:00
Bracken
89352f7958
Merge pull request #1518 from hendrywiranto/adjust-readme-remove-v2
...
README: replace Testify V2 notice with @dolmen's V2 manifesto
2024-10-26 19:33:39 +01:00
hendry.wiranto
2780579e15
review: use proper github md
2024-10-26 23:18:03 +07:00
hendry.wiranto
8f049b0122
link maintainer manifesto on readme instead of v2 notice
2024-10-26 23:18:03 +07:00
Arjun Dhawan
be992afabf
trial
2024-10-24 13:28:30 +02:00
Arjun Dhawan
fb67df6392
no regression
2024-10-24 11:40:45 +02:00
Arjun Dhawan
55bac84354
reword tests
2024-10-24 11:30:00 +02:00
Arjun Dhawan
822223ec34
fix name regression
2024-10-24 11:30:00 +02:00
Arjun Dhawan
22d3bd5def
in order to remain compatible with go1..19, don't compare function names (but do include them in the diff output)
2024-10-24 11:30:00 +02:00
Arjun Dhawan
9c174eb41c
fix: compare functional option names for indirect calls
...
Closes Functional Options testing broken for indirect calls #1380
2024-10-24 11:30:00 +02:00