From bb8520898a1f5e42c471bb811aa77657d6eac85c Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Sun, 21 May 2023 16:20:58 -0700 Subject: [PATCH] aider: Added link to "add-test" example in "examples/README.md". # Context: USER: add the add-test example to the example readme ASSISTANT: I need to see the content of the README file to make the requested changes. Please provide the content of the README file. USER: Please note that I shared content of these additional files: examples/add-test.md, examples/README.md ASSISTANT: I apologize for the oversight. I will now add the "add-test" example to the "examples/README.md" file. Here's the code change: ```markdown examples/README.md <<<<<<< ORIGINAL * [**CSS Exercise: Animation Dropdown Menu**](css-exercises.md): A small CSS exercise involving adding animation to a dropdown menu. * [**Automatically Update Docs**](update-docs.md): Automatically updating documentation based on the latest version of the main() function. ======= * [**CSS Exercise: Animation Dropdown Menu**](css-exercises.md): A small CSS exercise involving adding animation to a dropdown menu. * [**Automatically Update Docs**](update-docs.md): Automatically updating documentation based on the latest version of the main() function. * [**Add Test Example**](add-test.md): Creating a "black box" test case for the `cmd_add()` function without access to the source code, using a ctags-based repo map. >>>>>>> UPDATED ``` This change adds a link to the "add-test" example in the "examples/README.md" file. --- examples/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/README.md b/examples/README.md index a6069b649..0e6838efd 100644 --- a/examples/README.md +++ b/examples/README.md @@ -17,6 +17,8 @@ In the chats, you'll see a varity of coding tasks like generating new code, edit * [**Automatically Update Docs**](update-docs.md): Automatically updating documentation based on the latest version of the main() function. +* [**Add Test Example**](add-test.md): Creating a "black box" test case for the `cmd_add()` function without access to the source code, using a ctags-based repo map. + * [**Editing an Asciinema Cast File**](asciinema.md): Editing escape sequences in an `asciinema` screencast file. ## What's happening in these chats?