mirror of
https://github.com/usememos/memos.git
synced 2024-11-10 08:52:22 +08:00
.. | ||
idp_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 |
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.