the evaluation delimiters changed.
This commit is contained in:
@@ -10,7 +10,7 @@
|
||||
\begin{frame}{Contact}
|
||||
\begin{itemize}
|
||||
\item François Dausseur
|
||||
\item francois.dausseur@free.fr
|
||||
\item fdausseur@free.fr
|
||||
\item \url{https://git.beafrancois.fr/v_and_v/testium}
|
||||
\end{itemize}
|
||||
\end{frame}
|
||||
@@ -46,7 +46,7 @@
|
||||
\begin{listing}[H]
|
||||
\begin{minted}{yaml}
|
||||
# All sub directory in items are evaluated as a list
|
||||
items: $| [os.path.basename(f.path) for f in os.scandir(os.path.join("$(test_directory)", "items")) if f.is_dir()] |
|
||||
items: <| [os.path.basename(f.path) for f in os.scandir(os.path.join("$(test_directory)", "items")) if f.is_dir()] |>
|
||||
|
||||
# Parameters of the validation execution
|
||||
validation_report_path: $(test_directory)/../tmp/
|
||||
@@ -205,7 +205,7 @@ report:
|
||||
\begin{columns}
|
||||
\column{0.6\textwidth}
|
||||
\begin{itemize}
|
||||
\item \incode{\$|<statement>|}
|
||||
\item \incode{<|<statement>|>}
|
||||
\begin{itemize}
|
||||
\item Python evaluation of \incode{statement}
|
||||
\item Evaluated in:
|
||||
@@ -238,8 +238,8 @@ report:
|
||||
- query:
|
||||
method: record.start
|
||||
params:
|
||||
- slot: $|$(loop_index) + 1|
|
||||
input: $|($(test_data))[$(loop_index)]|
|
||||
- slot: <|$(loop_index) + 1|>
|
||||
input: <|($(test_data))[$(loop_index)]|>
|
||||
quality: medium
|
||||
[...]
|
||||
\end{minted}
|
||||
@@ -252,19 +252,19 @@ report:
|
||||
\begin{itemize}
|
||||
\item simple
|
||||
\begin{itemize}
|
||||
\item \incode{\$|\$(loop\_index)+1|}
|
||||
\item \incode{<|\$(loop\_index)+1|>}
|
||||
\end{itemize}
|
||||
\item table indexing
|
||||
\begin{itemize}
|
||||
\item \incode{\$|(\$(my\_table))[\$(loop\_index)]|}
|
||||
\item \incode{<|(\$(my\_table))[\$(loop\_index)]|>}
|
||||
\end{itemize}
|
||||
\item string
|
||||
\begin{itemize}
|
||||
\item \incode{\$|"\$(video\_path)"+(\$(vstream\_formats))[0]+".mkv"|}
|
||||
\item \incode{<|"\$(video\_path)"+(\$(vstream\_formats))[0]+".mkv"|>}
|
||||
\end{itemize}
|
||||
\item Random list of integers
|
||||
\begin{itemize}
|
||||
\item \incode{\$|[random.sample(range(0,8), k=4)]|}
|
||||
\item \incode{<|[random.sample(range(0,8), k=4)]|>}
|
||||
\end{itemize}
|
||||
\end{itemize}
|
||||
\end{frame}
|
||||
|
||||
@@ -301,8 +301,8 @@ tm = require("testium")
|
||||
name: check test item example
|
||||
values:
|
||||
- True
|
||||
- $|$(last_test_result) == 3|
|
||||
- $|"my string" in "$(my_global_variable)"|
|
||||
- <|$(last_test_result) == 3|>
|
||||
- <|"my string" in "$(my_global_variable)"|>
|
||||
\end{minted}
|
||||
\end{itemize}
|
||||
\end{frame}
|
||||
|
||||
Reference in New Issue
Block a user