loris/test/user/regex_test.dart

12 lines
210 B
Dart

import 'package:flutter_test/flutter_test.dart';
void main() {
matchWords();
}
void matchWords() {
test("try matching some words", () {
expect(RegExp(r"tiger").hasMatch("tigerfucker"), true);
});
}