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 | 9c00ece5b8c11d5aeaafefdae6be51c98c807f14 (patch) | |
tree | 0a0344c422ac1af3940d037005d10711e16d6600 /docs | |
parent | 5430391a9094ac546046075b7a1a603d6c90067c (diff) | |
download | sncontinue-9c00ece5b8c11d5aeaafefdae6be51c98c807f14.tar.gz sncontinue-9c00ece5b8c11d5aeaafefdae6be51c98c807f14.tar.bz2 sncontinue-9c00ece5b8c11d5aeaafefdae6be51c98c807f14.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
|