@Test
public void fileDoNotRelativize() throws Less4jException {
LessCompiler compiler = new DefaultLessCompiler();
Configuration configuration = new Configuration();
configuration.getSourceMapConfiguration().setRelativizePaths(false);
CompilationResult compilationResult = compiler.compile(ONE_IMPORT_LESS_FILE, configuration);
assertNotNull(compilationResult.getCss());
assertNotNull(compilationResult.getSourceMap());
assertLinksSourceMap(compilationResult.getCss(), toFullMapSuffix());
SourceMapValidator validator = new SourceMapValidator("");
validator.validateSourceMap(compilationResult, new File(ONE_IMPORT_MAPDATA_NO_RELATIVIZATION), URIUtils.changeSuffix(ONE_IMPORT_LESS_FILE, Constants.CSS_SUFFIX));
}