mirror of
https://github.com/SkinnyMind/libgit2dart.git
synced 2025-06-23 09:19:26 -04:00
docs(reference): update examples
This commit is contained in:
parent
627519a31f
commit
f5e43f3d90
2 changed files with 43 additions and 2 deletions
16
example/helpers.dart
Normal file
16
example/helpers.dart
Normal file
|
@ -0,0 +1,16 @@
|
|||
import 'dart:io';
|
||||
import '../test/helpers/util.dart';
|
||||
|
||||
Future<void> prepareRepo(String path) async {
|
||||
if (await Directory(path).exists()) {
|
||||
await Directory(path).delete(recursive: true);
|
||||
}
|
||||
await copyRepo(
|
||||
from: Directory('test/assets/testrepo/'),
|
||||
to: await Directory(path).create(),
|
||||
);
|
||||
}
|
||||
|
||||
Future<void> disposeRepo(String path) async {
|
||||
await Directory(path).delete(recursive: true);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue