summaryrefslogtreecommitdiff
path: root/lib/stdlib/test/shell_docs_SUITE_data
Commit message (Collapse)AuthorAgeFilesLines
* stdlib: Fix name paths of shell_docs test files on windowsLukas Larsson2021-12-0380-45/+372
| | | | | | | Windows filenames are not allowed to contain <>*, so we change those to something better. Closes #5474
* docgen: Fix hidden docs for modules and functionsLukas Larsson2021-10-01153-184/+1044
| | | | | | | | | | All modules and functions that do not have any documentation should be marked as hidden. This is because we want to EEP-48 doc chunks to be able to differentiate in between modules/functions that are private and those that are just not documented. In Erlang/OTP all modules/functions that are public are documented, so we generate hidden docs for all modules/functions that do not have any documentation.
* stdlib: Add render equality test for shell_docsLukas Larsson2021-02-08481-0/+17706
The testcase includes the current doc chunk created for the modules erlang, re, file, sofs. It also contains the current output of shell_docs:render of those functions so that it can compare them to see if any shell_docs:render changes breaks anything.