mirror of
https://github.com/usememos/memos.git
synced 2024-11-15 03:07:04 +08:00
9c18960f47
* skeleton of postgres skeleton * Adding Postgres specific db schema sql * user test passed * memo store test passed * tag is working * update user setting test done * activity test done * idp test passed * inbox test done * memo_organizer, UNTESTED * memo relation test passed * webhook test passed * system setting test passed * passed storage test * pass resource test * migration_history done * fix memo_relation_test * fixing server memo_relation test * passes memo relation server test * paess memo test * final manual testing done * final fixes * final fixes cleanup * sync schema * lint * lint * lint * lint * lint |
||
---|---|---|
.. | ||
activity_test.go | ||
idp_test.go | ||
inbox_test.go | ||
memo_relation_test.go | ||
memo_test.go | ||
README.md | ||
resource_test.go | ||
storage_test.go | ||
store.go | ||
store_test.go | ||
system_setting_test.go | ||
tag_test.go | ||
user_setting_test.go | ||
user_test.go | ||
webhook_test.go |
Store tests
How to test store with MySQL?
- Create a database in your MySQL server.
- Run the following command with two environment variables set:
DRIVER=mysql DSN=root@/memos_test go test -v ./test/store/...
DRIVER
should be set tomysql
.DSN
should be set to the DSN of your MySQL server.