Files
GitJournal/test/strip_markdown_formatting_test.dart
Vishesh Handa 9d00fdac06 Use import_sorter
flutter pub run import_sorter:main --no-comments

The code feels much cleaner
2020-07-24 12:43:28 +02:00

70 lines
1.4 KiB
Dart

import 'package:test/test.dart';
import 'package:gitjournal/utils/markdown.dart';
void main() {
group('Markdown Remove Formatting', () {
test('Test Headers', () {
var input = '# Hello\nHow are you?';
expect(stripMarkdownFormatting(input), 'Hello How are you?');
});
test('Test Header2', () {
var input = """Test Header
----------
Hello
""";
expect(stripMarkdownFormatting(input), 'Test Header Hello');
}, skip: true);
test('Itemized LIsts', () {
var input = """Itemized lists
look like:
* this one
* that one
""";
expect(stripMarkdownFormatting(input),
'Itemized lists look like: • this one • that one');
});
test('Checklist', () {
var input = """Itemized lists
- [ ] this one
- [x] that one
- [X] last
""";
expect(stripMarkdownFormatting(input),
'Itemized lists ☐ this one ☑ that one ☑ last');
});
test('List', () {
var input = """Itemized lists
* this one
* that one
* four
""";
expect(stripMarkdownFormatting(input),
'Itemized lists • this one • that one • four');
});
test('Russian Sentence', () {
var input = "Не́которые иностра́нцы ду́мают";
expect(stripMarkdownFormatting(input), input);
});
test('Russian Word', () {
var input = "Не́которые";
expect(stripMarkdownFormatting(input), input);
});
});
}