blob: 88659d0f0d91b9b63ab977ae61a21df929b33ea8 [file] [log] [blame]
// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import 'package:markdown/markdown.dart';
import 'package:test/test.dart';
void main() {
group('Document', () {
test('encodeHtml prevents less than and ampersand escaping', () {
var document = new Document(encodeHtml: false);
var result = document.parseInline('< &');
expect(result, hasLength(1));
expect(result[0], new isInstanceOf<Text>());
expect((result[0] as Text).text, equals('< &'));
});
});
}