Commit 3e03f786 authored by Roman Alifanov's avatar Roman Alifanov

created test for respondent

parent 0086e125
testlog_respondent.log
\ No newline at end of file
#!/bin/bash
source ./ximper-yad-respondent-func.sh
ximper_respondent ./ximper-yad-respondent-test.sh ./testlog respondent respondent
\ No newline at end of file
#!/bin/bash
while true; do
echo "Testing.. 1"
sleep 1
read -r -p "Провести ли тест дальше? [Y/n]: " answer
if [ "$answer" = "n" ]; then
break
fi
echo "Testing.. 2"
sleep 1
read -r -p "Провести ли тест дальше? 2 [N/y]: " answer
if [ "$answer" = "n" ]; then
break
fi
echo "Testing.. 3"
read -r -p "Провести ли тест дальше? 2 [Д/н]: " answer
if [ "$answer" = "n" ]; then
break
fi
done
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment