From 7f260be36100f951702325e97416514e7bc142b6 Mon Sep 17 00:00:00 2001 From: Kijin Sung Date: Sun, 30 Oct 2022 17:37:06 +0900 Subject: [PATCH] Remove cafe24 SMS driver from unit test --- tests/unit/framework/SMSTest.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/unit/framework/SMSTest.php b/tests/unit/framework/SMSTest.php index 1c2a05585..a952463d4 100644 --- a/tests/unit/framework/SMSTest.php +++ b/tests/unit/framework/SMSTest.php @@ -22,13 +22,11 @@ class SMSTest extends \Codeception\TestCase\Test $drivers = Rhymix\Framework\SMS::getSupportedDrivers(); $this->assertTrue(isset($drivers['dummy'])); $this->assertTrue(isset($drivers['apistore'])); - $this->assertTrue(isset($drivers['cafe24'])); $this->assertTrue(isset($drivers['coolsms'])); $this->assertTrue(isset($drivers['solapi'])); $this->assertTrue(isset($drivers['ppurio'])); $this->assertEquals('Dummy', $drivers['dummy']['name']); $this->assertTrue(in_array('api_user', $drivers['apistore']['required'])); - $this->assertTrue(in_array('api_user', $drivers['cafe24']['required'])); $this->assertTrue(in_array('api_key', $drivers['coolsms']['required'])); $this->assertTrue(in_array('api_user', $drivers['ppurio']['required'])); $this->assertTrue(in_array('api_key', $drivers['solapi']['required'])); @@ -36,7 +34,6 @@ class SMSTest extends \Codeception\TestCase\Test $this->assertTrue($drivers['coolsms']['api_spec']['delay_supported']); $this->assertTrue($drivers['solapi']['api_spec']['mms_supported']); $this->assertTrue($drivers['solapi']['api_spec']['delay_supported']); - $this->assertFalse($drivers['cafe24']['api_spec']['mms_supported']); } public function testSenderAndRecipients()