5 class HelpTest extends TestCase
8 public function test_wysiwyg_help_shows_tiny_and_tiny_license_link()
10 $resp = $this->get('/help/wysiwyg');
12 $resp->assertElementExists('a[href="https://www.tiny.cloud/"]');
13 $resp->assertElementExists('a[href="' . url('/libs/tinymce/license.txt') . '"]');
16 public function test_tiny_license_exists_where_expected()
18 $expectedPath = public_path('/libs/tinymce/license.txt');
19 $this->assertTrue(file_exists($expectedPath));
21 $contents = file_get_contents($expectedPath);
22 $this->assertStringContainsString('GNU LESSER GENERAL PUBLIC LICENSE', $contents);