From 86f17f6e335c08faf7a8d43487a457769f9384ed Mon Sep 17 00:00:00 2001 From: Mike Pirog Date: Wed, 30 Oct 2024 10:11:57 -0400 Subject: [PATCH] improve sluggy tests --- examples/sluggy/.gitignore | 1 + examples/sluggy/README.md | 14 +++++++++++++- 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 examples/sluggy/.gitignore diff --git a/examples/sluggy/.gitignore b/examples/sluggy/.gitignore new file mode 100644 index 000000000..22c879dc3 --- /dev/null +++ b/examples/sluggy/.gitignore @@ -0,0 +1 @@ +.lando.local.yml diff --git a/examples/sluggy/README.md b/examples/sluggy/README.md index 1d93b3167..c26a2ac3e 100644 --- a/examples/sluggy/README.md +++ b/examples/sluggy/README.md @@ -16,7 +16,19 @@ Run the following commands to validate things are rolling as they should. ```bash # Should correctly match up sluggy names -lando do-i-exist +lando do-i-exist | grep icachethereforeiam + +# Should be destroyed with success +lando destroy -y + +# Should be renamed to landoSluggy +echo "name: landoSluggy" > .lando.local.yml + +# Should start up successfully +lando start + +# Should correctly match up sluggy names +lando do-i-exist | grep icachethereforeiam ``` ## Destroy tests