// Copyright (c) Zefchain Labs, Inc. // SPDX-License-Identifier: Apache-2.0 #[cfg(with_dynamodb)] use linera_views::dynamo_db::DynamoDbStore; #[cfg(with_rocksdb)] use linera_views::rocks_db::RocksDbStore; #[cfg(with_scylladb)] use linera_views::scylla_db::ScyllaDbStore; use linera_views::{memory::MemoryStore, test_utils::admin_test}; #[tokio::test] async fn admin_test_memory() { admin_test::().await; } #[cfg(with_rocksdb)] #[tokio::test] async fn admin_test_rocks_db() { admin_test::().await; } #[cfg(with_dynamodb)] #[tokio::test] async fn admin_test_dynamo_db() { admin_test::().await; } #[cfg(with_scylladb)] #[tokio::test] async fn admin_test_scylla_db() { admin_test::().await; }