Skip to content

Commit

Permalink
Improve comments
Browse files Browse the repository at this point in the history
  • Loading branch information
rogervinas authored Nov 22, 2023
1 parent 4ae7c8a commit b65edac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bash/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,13 +95,13 @@ setup() {
```shell
@test "helloApp should print hello message" {
# 4.1 Create a helloMessage function mock
# - Will return "Hello Test!"
# that will return "Hello Test!"
function helloMessageMock() {
echo "Hello Test!"
}

# 4.2 Create a helloConsole function mock
# - Will print parameter passed within "helloConsoleMock[...]"
# that will print parameter passed within "helloConsoleMock[...]"
function helloConsoleMock() {
local text=$1
echo "helloConsoleMock[$text]"
Expand Down

0 comments on commit b65edac

Please sign in to comment.