diff --git a/test/fixtures/tags.yml b/test/fixtures/tags.yml new file mode 100644 index 0000000..b20bed1 --- /dev/null +++ b/test/fixtures/tags.yml @@ -0,0 +1,22 @@ +root_tag_one: + id: 1 + name: 'root_with_kids' + pending: false +root_tag_two: + id: 2 + name: 'quack' + pending: false +subtag_one: + id: 3 + name: 'subtag' + parent_id: 1 + pending: false +pending_tag_one: + id: 4 + name: 'pending' + pending: true +pending_subtag_one: + id: 5 + name: 'pending_subtag' + parent_id: 1 + pending: true -- libgit2 0.21.2