mirror of
https://github.com/moparisthebest/curl
synced 2024-11-05 00:55:04 -05:00
0922f76240
It is still possible to override the executable to run during the test,
using the <tool> tag, but this patch removes the requirement that the
tag must be present for unit tests.
It also removes the possibility of human error when existing test cases
are used as the basis for new tests, as recently witnessed in 81c37124
.
Reviewed-by: Daniel Stenberg
Closes #4976
27 lines
344 B
Plaintext
27 lines
344 B
Plaintext
<testcase>
|
|
<info>
|
|
<keywords>
|
|
unittest
|
|
netrc
|
|
</keywords>
|
|
</info>
|
|
|
|
#
|
|
# Client-side
|
|
<client>
|
|
<server>
|
|
none
|
|
</server>
|
|
<features>
|
|
unittest
|
|
</features>
|
|
<name>
|
|
netrc parsing unit tests
|
|
</name>
|
|
<file name="log/netrc1304">
|
|
machine example.com login admin password passwd
|
|
machine curl.example.com login none password none
|
|
</file>
|
|
</client>
|
|
</testcase>
|