Update acceptance tests to use new functionality_test_mod. Closes #1056

This commit is contained in:
Puskar Basu
2021-10-28 14:25:12 +05:30
committed by GitHub
parent 9622e13ba9
commit c30d71cc2c
24 changed files with 510 additions and 49 deletions

View File

@@ -0,0 +1,21 @@
benchmark "check_cache_benchmark" {
title = "Benchmark to test the cache functionality in steampipe"
children = [
control.cache_test_1,
control.cache_test_2
]
}
control "cache_test_1" {
title = "Control to test cache functionality 1"
description = "Control to test cache functionality in steampipe."
sql = query.check_cache.sql
severity = "high"
}
control "cache_test_2" {
title = "Control to test cache functionality 2"
description = "Control to test cache functionality in steampipe."
sql = query.check_cache.sql
severity = "high"
}