aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcodl <[email protected]>2017-11-30 01:54:52 +0100
committercodl <[email protected]>2017-11-30 01:54:52 +0100
commit9227528a1504ec79cf5af8e4aa15c702215abb3c (patch)
tree528d1c2cf26d44f10506a29b3134ccef46dcbfa1 /tests/setup.sql
parent2b4008981055f990c23bf42bb65f856231436422 (diff)
downloadmastodon.py-9227528a1504ec79cf5af8e4aa15c702215abb3c.tar.gz
add tests for follow request methods
Diffstat (limited to 'tests/setup.sql')
-rw-r--r--tests/setup.sql2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/setup.sql b/tests/setup.sql
index 81f1e18..d65e503 100644
--- a/tests/setup.sql
+++ b/tests/setup.sql
@@ -7,11 +7,13 @@ DELETE FROM accounts WHERE id = 1234567890123456;
7INSERT INTO accounts ( 7INSERT INTO accounts (
8 id, 8 id,
9 username, 9 username,
10 locked,
10 created_at, 11 created_at,
11 updated_at 12 updated_at
12) VALUES ( 13) VALUES (
13 1234567890123456, 14 1234567890123456,
14 'mastodonpy_test', 15 'mastodonpy_test',
16 't',
15 now(), 17 now(),
16 now() 18 now()
17); 19);
Powered by cgit v1.2.3 (git 2.41.0)