loris/test/user/regex_test.dart

12 lines
210 B
Dart
Raw Permalink Normal View History

2022-07-01 14:14:13 +00:00
import 'package:flutter_test/flutter_test.dart';
void main() {
matchWords();
}
void matchWords() {
test("try matching some words", () {
expect(RegExp(r"tiger").hasMatch("tigerfucker"), true);
});
}