Move Indent and Shape to shape.rs from lib.rs

This commit is contained in:
Seiichi Uchida 2017-09-17 15:23:25 +09:00 committed by topecongiro
parent 8974f89381
commit df7d2be562
17 changed files with 372 additions and 358 deletions

View file

@ -13,8 +13,8 @@
use regex::Regex;
use unicode_segmentation::UnicodeSegmentation;
use Shape;
use config::Config;
use shape::Shape;
use utils::wrap_str;
const MIN_STRING: usize = 10;
@ -128,6 +128,7 @@ pub fn rewrite_string<'a>(orig: &str, fmt: &StringFormat<'a>) -> Option<String>
#[cfg(test)]
mod test {
use super::{rewrite_string, StringFormat};
use shape::{Indent, Shape};
#[test]
fn issue343() {
@ -137,7 +138,7 @@ mod test {
closer: "\"",
line_start: " ",
line_end: "\\",
shape: ::Shape::legacy(2, ::Indent::empty()),
shape: Shape::legacy(2, Indent::empty()),
trim_end: false,
config: &config,
};