diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-06-02 23:21:42 -0400 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-06-02 23:21:42 -0400 |
commit | 11752ba26d790cbc9a3b0b343e7ab33287cc733f (patch) | |
tree | fb420948848f23d426e2592ae91a0da51487e06a /docs | |
parent | ad1247a4af567c6ffde37adff526d5a0edb0ec39 (diff) | |
download | sncontinue-11752ba26d790cbc9a3b0b343e7ab33287cc733f.tar.gz sncontinue-11752ba26d790cbc9a3b0b343e7ab33287cc733f.tar.bz2 sncontinue-11752ba26d790cbc9a3b0b343e7ab33287cc733f.zip |
recipes folder
Diffstat (limited to 'docs')
-rw-r--r-- | docs/docs/concepts/step.md | 4 | ||||
-rw-r--r-- | docs/docs/walkthroughs/create-a-recipe.md | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/docs/docs/concepts/step.md b/docs/docs/concepts/step.md index 1758fdd8..1e1a0a65 100644 --- a/docs/docs/concepts/step.md +++ b/docs/docs/concepts/step.md @@ -60,10 +60,10 @@ Create and run an alembic migration - `edited_file`:
-### WritePytestsStep
+### WritePytestsRecipe
Write unit tests for this file.
#### Parameters
-- for_filepath (required): the path of the file that unit tests should be created for
\ No newline at end of file +- for_filepath (required): the path of the file that unit tests should be created for
diff --git a/docs/docs/walkthroughs/create-a-recipe.md b/docs/docs/walkthroughs/create-a-recipe.md index 0cf1892e..12dd3167 100644 --- a/docs/docs/walkthroughs/create-a-recipe.md +++ b/docs/docs/walkthroughs/create-a-recipe.md @@ -67,7 +67,7 @@ class CreatePytestsStep(Step): code = await sdk.ide.readFile(self.input_file_path)
sdk.run_step(CreateDirStep(output_dir_path))
- sdk.run_step(WritePytestsStep(code, output_file_prefix, output_dir_path))
+ sdk.run_step(WritePytestsRecipe(code, output_file_prefix, output_dir_path))
```
### Adjust for different OS
|