mirror of
https://github.com/SkinnyMind/libgit2dart.git
synced 2025-05-05 04:39:07 -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
|
@ -84,12 +84,12 @@ void main() {
|
|||
expect(repo.isBranchUnborn, true);
|
||||
});
|
||||
|
||||
test('successfully sets identity ', () {
|
||||
test('sets identity ', () {
|
||||
repo.setIdentity(name: 'name', email: 'email@email.com');
|
||||
expect(repo.identity, {'name': 'email@email.com'});
|
||||
});
|
||||
|
||||
test('successfully unsets identity', () {
|
||||
test('unsets identity', () {
|
||||
repo.setIdentity(name: null, email: null);
|
||||
expect(repo.identity, isEmpty);
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue