summaryrefslogtreecommitdiff
path: root/src/components/equipment.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/equipment.rs')
-rw-r--r--src/components/equipment.rs14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/components/equipment.rs b/src/components/equipment.rs
index 94a440b..c19563f 100644
--- a/src/components/equipment.rs
+++ b/src/components/equipment.rs
@@ -120,18 +120,4 @@ mod tests {
);
}
-
- #[test]
- fn bonus_value() {
- assert_eq!(
- Equipment{equipment: hashmap!(
- Slot::Hand => Some(Equippable{
- slot: Slot::Hand,
- stats: hashmap!(Stat::Strength => 15)
- }),
- Slot::Body => None
- )}.get_bonus(Stat::Strength),
- 15
- );
- }
}