Invert dependency of metadata and extractors

This commit is contained in:
Deluan
2022-12-18 23:01:57 -05:00
committed by Deluan Quintão
parent 55b0227494
commit 0c22af3585
6 changed files with 43 additions and 30 deletions
+3 -3
View File
@@ -5,10 +5,10 @@ import (
. "github.com/onsi/gomega"
)
var _ = Describe("Parser", func() {
var e *Parser
var _ = Describe("Extractor", func() {
var e *Extractor
BeforeEach(func() {
e = &Parser{}
e = &Extractor{}
})
Context("extractMetadata", func() {