Remove unused method

[MAILPOET-3037]
This commit is contained in:
Pavel Dohnal
2021-05-17 14:57:21 +02:00
committed by Veljko V
parent 480f911a30
commit 61d73c1b6c
2 changed files with 0 additions and 23 deletions

View File

@ -96,17 +96,6 @@ class FormsTest extends \MailPoetTest {
expect($storedData['settings'])->notEmpty();
}
public function testItCanExportAForm() {
$response = $this->endpoint->create();
expect($response->status)->equals(APIResponse::STATUS_OK);
$response = $this->endpoint->exportsEditor($response->data);
expect($response->data['html'])->notEmpty();
expect($response->data['php'])->notEmpty();
expect($response->data['iframe'])->notEmpty();
expect($response->data['shortcode'])->notEmpty();
}
public function testItCanSaveFormEditor() {
$response = $this->endpoint->create();
expect($response->status)->equals(APIResponse::STATUS_OK);