mirror of
https://github.com/SkinnyMind/libgit2dart.git
synced 2025-05-04 20:29:08 -04:00
test: improve coverage
This commit is contained in:
parent
d75acbfdd3
commit
d6eae1e9ed
71 changed files with 710 additions and 229 deletions
|
@ -44,9 +44,13 @@ void main() {
|
|||
final operation = rebase.next();
|
||||
expect(operation.type, GitRebaseOperation.pick);
|
||||
expect(operation.oid.sha, shas[i]);
|
||||
expect(operation.exec, '');
|
||||
expect(operation.toString(), contains('RebaseOperation{'));
|
||||
|
||||
rebase.commit(committer: signature);
|
||||
rebase.commit(
|
||||
committer: signature,
|
||||
author: signature,
|
||||
message: 'rebase message',
|
||||
);
|
||||
}
|
||||
|
||||
rebase.finish();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue