platform/packages/inflection2/test/is_tense_test.dart

17 lines
389 B
Dart
Raw Normal View History

2021-05-02 08:39:25 +00:00
library inflection.is_tense.test;
import 'package:test/test.dart';
import '../lib/inflection2.dart';
void main() {
group("isTense", () {
test('correctly identifies if a word is in past tense', () {
expect(isPastTense('run'), false);
expect(isPastTense('ran'), true);
expect(isPastTense('PusHed'), true);
expect(isPastTense('PusH'), false);
});
});
}