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
|
@ -20,7 +20,7 @@ void main() {
|
|||
signature.free();
|
||||
});
|
||||
group('Signature', () {
|
||||
test('successfully creates with provided time and offset', () {
|
||||
test('creates with provided time and offset', () {
|
||||
expect(signature, isA<Signature>());
|
||||
});
|
||||
|
||||
|
@ -40,7 +40,7 @@ void main() {
|
|||
);
|
||||
});
|
||||
|
||||
test('successfully creates without provided time and offset', () {
|
||||
test('creates without provided time and offset', () {
|
||||
final sig = Signature.create(name: 'Name', email: 'email@example.com');
|
||||
expect(sig, isA<Signature>());
|
||||
expect(sig.name, 'Name');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue