aboutsummaryrefslogtreecommitdiff
path: root/src/castable_factory/threadsafe.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/castable_factory/threadsafe.rs')
-rw-r--r--src/castable_factory/threadsafe.rs24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/castable_factory/threadsafe.rs b/src/castable_factory/threadsafe.rs
index 08c5ecf..84e15b9 100644
--- a/src/castable_factory/threadsafe.rs
+++ b/src/castable_factory/threadsafe.rs
@@ -85,3 +85,27 @@ where
ReturnInterface: 'static + ?Sized,
{
}
+
+#[cfg(test)]
+mod tests
+{
+ use super::*;
+
+ #[test]
+ fn can_call()
+ {
+ #[derive(Debug, PartialEq, Eq)]
+ struct Bacon
+ {
+ heal_amount: u32,
+ }
+
+ let castable_factory = ThreadsafeCastableFactory::new(&|heal_amount| {
+ TransientPtr::new(Bacon { heal_amount })
+ });
+
+ let output = castable_factory(27);
+
+ assert_eq!(output, Box::new(Bacon { heal_amount: 27 }));
+ }
+}