summaryrefslogtreecommitdiff
path: root/rust/tests/workflow.rs
diff options
context:
space:
mode:
authorMason Reed <mason@vector35.com>2025-02-26 20:56:18 -0500
committerMason Reed <mason@vector35.com>2025-02-26 21:05:34 -0500
commitdc8015f6695ee069279dfbd681000e8b1fcd30e5 (patch)
treec1e387c68a249ff90999bbdcc4fa90372516d88c /rust/tests/workflow.rs
parent4608523101738492124069765324141966372229 (diff)
Remove module level `Session` initialization in Rust unit tests
This was preventing the enterprise license checkout from dropping, also the initialization story is much better than it was when we added the rstest fixtures, we can get away with initialization in parallel more broadly.
Diffstat (limited to 'rust/tests/workflow.rs')
-rw-r--r--rust/tests/workflow.rs17
1 files changed, 6 insertions, 11 deletions
diff --git a/rust/tests/workflow.rs b/rust/tests/workflow.rs
index fcede59c..148d66fd 100644
--- a/rust/tests/workflow.rs
+++ b/rust/tests/workflow.rs
@@ -1,19 +1,13 @@
use binaryninja::headless::Session;
use binaryninja::settings::Settings;
use binaryninja::workflow::Workflow;
-use rstest::*;
-
-#[fixture]
-#[once]
-fn session() -> Session {
- Session::new().expect("Failed to initialize session")
-}
// TODO: Test running a workflow activity
// TODO: Test activity insertion and removal
-#[rstest]
-fn test_workflow_clone(_session: &Session) {
+#[test]
+fn test_workflow_clone() {
+ let _session = Session::new().expect("Failed to initialize session");
let original_workflow = Workflow::new("core.function.baseAnalysis");
let mut cloned_workflow = original_workflow.clone("clone_workflow");
@@ -30,8 +24,9 @@ fn test_workflow_clone(_session: &Session) {
);
}
-#[rstest]
-fn test_workflow_registration(_session: &Session) {
+#[test]
+fn test_workflow_registration() {
+ let _session = Session::new().expect("Failed to initialize session");
// Validate NULL workflows cannot be registered
let workflow = Workflow::new("null");
assert_eq!(workflow.name().as_str(), "null");