-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change-Id: I5a7f727c4be08ebdf911f78c39ffc578ddb670b4
- Loading branch information
Showing
7 changed files
with
50 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
# Tests that the command "how do you say hi in spanish" | ||
# will return "Hola" to verify the Assistant SDK | ||
# end-to-end. | ||
#!/bin/bash | ||
set -e | ||
set -u | ||
set -o pipefail | ||
set -x | ||
|
||
echo "how do you say hi in spanish" | ./run_assistant_text \ | ||
# Tests that the command "How do you say hi in spanish?" | ||
# will return "Hola" to verify the Assistant SDK | ||
# end-to-end. | ||
echo "How do you say hi in spanish?" | ./run_assistant_text \ | ||
--credentials ./credentials.json --verbose | grep "Hola" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,12 @@ | ||
# Tests that the command "how do you say hello in spanish" | ||
# will return "buenos dias" to verify the Assistant SDK | ||
# end-to-end. | ||
#!/bin/bash | ||
set -e | ||
set -u | ||
set -o pipefail | ||
set -x | ||
|
||
echo "comment dit-on bonjour en español" | ./run_assistant_text \ | ||
# Tests that the command "How do you say hello in spanish?" | ||
# will return "Buenos dias" to verify the Assistant SDK | ||
# end-to-end. | ||
echo "Comment dit-on bonjour en espagnol?" | ./run_assistant_text \ | ||
--credentials ./credentials.json \ | ||
--locale "fr-FR" --verbose | grep "Buenos dias" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters