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
|
@ -26,7 +26,7 @@ void main() {
|
|||
});
|
||||
|
||||
group('Tree', () {
|
||||
test('successfully initializes tree from provided Oid', () {
|
||||
test('initializes tree from provided Oid', () {
|
||||
expect(tree, isA<Tree>());
|
||||
expect(tree.toString(), contains('Tree{'));
|
||||
});
|
||||
|
@ -77,7 +77,7 @@ void main() {
|
|||
expect(() => tree[true], throwsA(isA<ArgumentError>()));
|
||||
});
|
||||
|
||||
test('successfully creates tree', () {
|
||||
test('creates tree', () {
|
||||
final fileOid = repo.createBlob('blob content');
|
||||
final builder = TreeBuilder(repo: repo);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue