mirror of
https://github.com/SkinnyMind/libgit2dart.git
synced 2025-05-04 20:29:08 -04:00
style: clean up tests names
This commit is contained in:
parent
41fab98d17
commit
c516119397
33 changed files with 212 additions and 223 deletions
|
@ -28,7 +28,7 @@ void main() {
|
|||
});
|
||||
|
||||
group('RevWalk', () {
|
||||
test('successfully initializes', () {
|
||||
test('initializes walker', () {
|
||||
final walker = RevWalk(repo);
|
||||
expect(walker, isA<RevWalk>());
|
||||
walker.free();
|
||||
|
@ -72,7 +72,7 @@ void main() {
|
|||
walker.free();
|
||||
});
|
||||
|
||||
test('successfully changes sorting', () {
|
||||
test('changes sorting', () {
|
||||
final walker = RevWalk(repo);
|
||||
final start = Oid.fromSHA(repo: repo, sha: log.first);
|
||||
|
||||
|
@ -169,7 +169,7 @@ void main() {
|
|||
walker.free();
|
||||
});
|
||||
|
||||
test('successfully hides commit and its ancestors', () {
|
||||
test('hides commit and its ancestors', () {
|
||||
final walker = RevWalk(repo);
|
||||
|
||||
walker.push(repo[log.first]);
|
||||
|
@ -265,7 +265,7 @@ void main() {
|
|||
walker.free();
|
||||
});
|
||||
|
||||
test('successfully resets walker', () {
|
||||
test('resets walker', () {
|
||||
final walker = RevWalk(repo);
|
||||
final start = Oid.fromSHA(repo: repo, sha: log.first);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue