From 883123ecdd214c8cf68f931886b93425ae598c7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mattias=20Walstr=C3=B6m?= Date: Thu, 3 Oct 2024 15:25:35 +0200 Subject: [PATCH] test: Update misc/operational_all for test specification --- test/case/misc/operational_all/Readme.adoc | 4 ++-- test/case/misc/operational_all/test.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/test/case/misc/operational_all/Readme.adoc b/test/case/misc/operational_all/Readme.adoc index 4276569b..6ed0acbe 100644 --- a/test/case/misc/operational_all/Readme.adoc +++ b/test/case/misc/operational_all/Readme.adoc @@ -15,8 +15,8 @@ image::topology.png[Get all operational topology] endif::testgroup[] endif::topdoc[] ==== Test sequence -. Initialize -. Get all Operational data +. Set up topology and attach to target DUT +. Get all Operational data from 'target' <<< diff --git a/test/case/misc/operational_all/test.py b/test/case/misc/operational_all/test.py index 22fb799b..0b446379 100755 --- a/test/case/misc/operational_all/test.py +++ b/test/case/misc/operational_all/test.py @@ -10,11 +10,11 @@ import infamy import infamy.iface as iface with infamy.Test() as test: - with test.step("Initialize"): + with test.step("Set up topology and attach to target DUT"): env = infamy.Env() target = env.attach("target", "mgmt") - with test.step("Get all Operational data"): + with test.step("Get all Operational data from 'target'"): target.get_data(parse=False) test.succeed()