From 13cc8a9201fd8ed5d80ea57a08104aa79a5e757e Mon Sep 17 00:00:00 2001 From: Valerii Hiora Date: Fri, 27 Jun 2014 17:28:55 +0300 Subject: Fixed tests, merged lookup functions --- src/toml.rs | 19 ++++--------------- 1 file changed, 4 insertions(+), 15 deletions(-) diff --git a/src/toml.rs b/src/toml.rs index 3223c91..440da6a 100644 --- a/src/toml.rs +++ b/src/toml.rs @@ -55,7 +55,7 @@ pub use serialization::{InvalidMapKeyLocation, InvalidMapKeyType}; mod parser; mod show; mod serialization; - +#[cfg(test)]mod test; /// Representation of a TOML value. #[deriving(PartialEq, Clone)] #[allow(missing_doc)] @@ -172,18 +172,8 @@ impl Value { /// assert_eq!(no_bar.is_none(), true); /// ``` pub fn lookup<'a>(&'a self, path: &'a str) -> Option<&'a Value> { - Value::lookup_path(self, path.split('.')) - } - - // Performs actual traverse starting with value - // - // For arrays tries to convert key to uint and retrieve - // corresponding element - fn lookup_path<'a, I:Iterator<&'a str>>(value: &'a Value, - components: I) -> Option<&'a Value> { - let mut cur_value: &'a Value = value; - let mut iter = components; - for key in iter { + let mut cur_value = self; + for key in path.split('.') { match cur_value { &Table(ref hm) => { match hm.find_equiv(&key) { @@ -212,9 +202,8 @@ impl FromStr for Value { } } - #[cfg(test)] -mod test { +mod tests { use super::Value; #[test] -- cgit v1.2.3