mirror of
https://github.com/SkinnyMind/libgit2dart.git
synced 2025-05-04 20:29:08 -04:00
13 lines
329 B
Dart
13 lines
329 B
Dart
import 'package:test/test.dart';
|
|
import 'package:libgit2dart/libgit2dart.dart';
|
|
|
|
void main() {
|
|
group('Features', () {
|
|
test('returns list of compile time options for libgit2', () {
|
|
expect(
|
|
Features.list,
|
|
{GitFeature.threads, GitFeature.https, GitFeature.ssh, GitFeature.nsec},
|
|
);
|
|
});
|
|
});
|
|
}
|