diff --git a/spec/Factory/ActiveCampaign/ContactTagFactorySpec.php b/spec/Factory/ActiveCampaign/ContactTagFactorySpec.php new file mode 100644 index 0000000..cf7772e --- /dev/null +++ b/spec/Factory/ActiveCampaign/ContactTagFactorySpec.php @@ -0,0 +1,33 @@ +beConstructedWith(); + } + + public function it_is_initializable(): void + { + $this->shouldBeAnInstanceOf(ContactTagFactory::class); + } + + public function it_implements_contact_tag_factory_interface(): void + { + $this->shouldImplement(ContactTagFactoryInterface::class); + } + + public function it_should_returns_a_contact_tag_instance(): void + { + $this->createNew(2, 3)->shouldReturnAnInstanceOf(ContactTag::class); + } +} diff --git a/src/Factory/ActiveCampaign/ContactTagFactory.php b/src/Factory/ActiveCampaign/ContactTagFactory.php new file mode 100644 index 0000000..d0c1be5 --- /dev/null +++ b/src/Factory/ActiveCampaign/ContactTagFactory.php @@ -0,0 +1,16 @@ + + +