summaryrefslogtreecommitdiff
path: root/src/attributes/rectangle.rs
diff options
context:
space:
mode:
authorseancarroll <seanc28@gmail.com>2021-01-09 22:44:40 -0600
committerseancarroll <seanc28@gmail.com>2021-01-09 22:44:40 -0600
commitc3a01f5353013b82ec3048969f48e1f229a88c48 (patch)
tree629b641cdb202c7b0bf372ad688bde8da520d0b2 /src/attributes/rectangle.rs
parent16bf6f3f1a132c61e40a0137d69c1b53bbf7bd59 (diff)
downloaddotavious-c3a01f5353013b82ec3048969f48e1f229a88c48.zip
cargo fmt
Diffstat (limited to 'src/attributes/rectangle.rs')
-rw-r--r--src/attributes/rectangle.rs17
1 files changed, 10 insertions, 7 deletions
diff --git a/src/attributes/rectangle.rs b/src/attributes/rectangle.rs
index 9b36ee2..acf9ae1 100644
--- a/src/attributes/rectangle.rs
+++ b/src/attributes/rectangle.rs
@@ -19,15 +19,18 @@ impl<'a> DotString<'a> for Rectangle {
#[cfg(test)]
mod test {
- use crate::attributes::{Rectangle, Point};
+ use crate::attributes::{Point, Rectangle};
use crate::DotString;
#[test]
fn dot_string() {
- assert_eq!("0.0,0.0,1.0,1.0", Rectangle {
- lower_left: Point::new_2d(0.0, 0.0),
- upper_right: Point::new_2d(1.0, 1.0)
- }.dot_string());
+ assert_eq!(
+ "0.0,0.0,1.0,1.0",
+ Rectangle {
+ lower_left: Point::new_2d(0.0, 0.0),
+ upper_right: Point::new_2d(1.0, 1.0)
+ }
+ .dot_string()
+ );
}
-
-} \ No newline at end of file
+}