summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2023-10-28 18:08:42 +0300
committerAndrew Dolgov <[email protected]>2023-10-28 18:08:42 +0300
commit0ac8710ea1b1426bf19bb502ba4921ef35cd1db6 (patch)
treecbd2aad0cc5d116828b8cf93993c0bb14b4d156e
parent01c9869e2b72be514691f7c5eead1632fe682781 (diff)
add always-failing mock of api test
-rw-r--r--tests/ApiTest.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/ApiTest.php b/tests/ApiTest.php
new file mode 100644
index 000000000..cee4f8313
--- /dev/null
+++ b/tests/ApiTest.php
@@ -0,0 +1,13 @@
+<?php
+use PHPUnit\Framework\TestCase;
+
+/** @group integration */
+final class ApiTest extends TestCase {
+
+ function test_login() {
+
+
+
+ }
+
+}