aboutsummaryrefslogtreecommitdiffstats
path: root/lib/eunit/doc/overview.edoc
diff options
context:
space:
mode:
authorFredrik Gustafsson <[email protected]>2012-08-10 11:01:08 +0200
committerFredrik Gustafsson <[email protected]>2012-08-10 11:01:08 +0200
commita9953b23cbc7327132df4da61f236413a828e6b5 (patch)
tree4bd8b35aca9aee02d81dfecc5cae76c97db55ce6 /lib/eunit/doc/overview.edoc
parentbd4eed6a3de6f759f17b0715219987036dd3baba (diff)
parentf968ff87b1d6fb74237010bffa0390953337425e (diff)
downloadotp-a9953b23cbc7327132df4da61f236413a828e6b5.tar.gz
otp-a9953b23cbc7327132df4da61f236413a828e6b5.tar.bz2
otp-a9953b23cbc7327132df4da61f236413a828e6b5.zip
Merge branch 'maint'
Diffstat (limited to 'lib/eunit/doc/overview.edoc')
-rw-r--r--lib/eunit/doc/overview.edoc8
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/eunit/doc/overview.edoc b/lib/eunit/doc/overview.edoc
index ad449cb6fc..b4af31ae6a 100644
--- a/lib/eunit/doc/overview.edoc
+++ b/lib/eunit/doc/overview.edoc
@@ -723,8 +723,12 @@ A <em>simple test object</em> is one of the following:
```fun some_function/0'''
```fun some_module:some_function/0'''
</li>
- <li>A pair of atoms `{ModuleName, FunctionName}', referring to the
- function `ModuleName:FunctionName/0'</li>
+ <li>A tuple `{test, ModuleName, FunctionName}', where `ModuleName' and
+ `FunctionName' are atoms, referring to the function
+ `ModuleName:FunctionName/0'</li>
+ <li>(Obsolete) A pair of atoms `{ModuleName, FunctionName}', equivalent to
+ `{test, ModuleName, FunctionName}' if nothing else matches first. This
+ might be removed in a future version.</li>
<li>A pair `{LineNumber, SimpleTest}', where `LineNumber' is a
nonnegative integer and `SimpleTest' is another simple test
object. `LineNumber' should indicate the source line of the test.