mirror of
https://github.com/turbot/steampipe.git
synced 2026-05-15 22:01:39 -04:00
Update search-path acceptance tests to modify the queries. Closes #793
This commit is contained in:
@@ -3,5 +3,9 @@ SELECT s_path.setting as resource,
|
||||
CASE
|
||||
WHEN s_path.setting LIKE 'aws%' THEN 'ok'
|
||||
ELSE 'alarm'
|
||||
END as status, '' as reason
|
||||
END as status,
|
||||
CASE
|
||||
WHEN s_path.setting LIKE 'aws%' THEN 'Starts with "aws"'
|
||||
ELSE 'Does not start with "aws"'
|
||||
END as reason
|
||||
FROM s_path
|
||||
@@ -3,5 +3,9 @@ SELECT s_path.setting as resource,
|
||||
CASE
|
||||
WHEN s_path.setting LIKE 'a, b, c%' THEN 'ok'
|
||||
ELSE 'alarm'
|
||||
END as status, '' as reason
|
||||
END as status,
|
||||
CASE
|
||||
WHEN s_path.setting LIKE 'aws%' THEN 'Starts with "a, b, c"'
|
||||
ELSE 'Does not start with "a, b, c"'
|
||||
END as reason
|
||||
FROM s_path
|
||||
Reference in New Issue
Block a user