Steven 582cc6609c feat: add user-defined id to resource 5 months ago
..
README.md 87ddeb2c79 chore: adjust store test for mysql 9 months ago
activity_test.go 5bcbbd4c52 chore: fix store tests on Windows (#2769) 5 months ago
idp_test.go 5bcbbd4c52 chore: fix store tests on Windows (#2769) 5 months ago
inbox_test.go 5bcbbd4c52 chore: fix store tests on Windows (#2769) 5 months ago
memo_organizer_test.go 8382354ef7 feat: add user-defined name to memo 5 months ago
memo_relation_test.go 8382354ef7 feat: add user-defined name to memo 5 months ago
memo_test.go 8382354ef7 feat: add user-defined name to memo 5 months ago
migrator_test.go 582cc6609c feat: add user-defined id to resource 5 months ago
resource_test.go 582cc6609c feat: add user-defined id to resource 5 months ago
storage_test.go 5bcbbd4c52 chore: fix store tests on Windows (#2769) 5 months ago
store.go d67eaaaee2 chore: update database migrator 6 months ago
system_setting_test.go 5bcbbd4c52 chore: fix store tests on Windows (#2769) 5 months ago
tag_test.go 5bcbbd4c52 chore: fix store tests on Windows (#2769) 5 months ago
user_setting_test.go 5bcbbd4c52 chore: fix store tests on Windows (#2769) 5 months ago
user_test.go 5bcbbd4c52 chore: fix store tests on Windows (#2769) 5 months ago
webhook_test.go 5bcbbd4c52 chore: fix store tests on Windows (#2769) 5 months ago

README.md

Store tests

How to test store with MySQL?

  1. Create a database in your MySQL server.
  2. Run the following command with two environment variables set:

    DRIVER=mysql DSN=root@/memos_test go test -v ./test/store/...
    
  • DRIVER should be set to mysql.
  • DSN should be set to the DSN of your MySQL server.