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
|
@ -25,7 +25,7 @@ void main() {
|
|||
});
|
||||
|
||||
group('Rebase', () {
|
||||
test('successfully performs rebase when there is no conflicts', () {
|
||||
test('performs rebase when there is no conflicts', () {
|
||||
final signature = Signature.create(
|
||||
name: 'Author',
|
||||
email: 'author@email.com',
|
||||
|
@ -83,7 +83,7 @@ void main() {
|
|||
signature.free();
|
||||
});
|
||||
|
||||
test('successfully performs rebase without branch provided', () {
|
||||
test('performs rebase without branch provided', () {
|
||||
final signature = Signature.create(
|
||||
name: 'Author',
|
||||
email: 'author@email.com',
|
||||
|
@ -129,7 +129,7 @@ void main() {
|
|||
signature.free();
|
||||
});
|
||||
|
||||
test('successfully performs rebase with provided upstream', () {
|
||||
test('performs rebase with provided upstream', () {
|
||||
final signature = Signature.create(
|
||||
name: 'Author',
|
||||
email: 'author@email.com',
|
||||
|
@ -250,7 +250,7 @@ void main() {
|
|||
signature.free();
|
||||
});
|
||||
|
||||
test('successfully aborts rebase in progress', () {
|
||||
test('aborts rebase in progress', () {
|
||||
final master = repo.lookupReference('refs/heads/master');
|
||||
final branchHead = AnnotatedCommit.lookup(repo: repo, oid: master.target);
|
||||
final conflict = repo.lookupReference('refs/heads/conflict-branch');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue