A clean, Markdown-based publishing platform made for writers. Write together, and build a community. https://writefreely.org
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

123456789101112131415161718
  1. package writefreely
  2. import (
  3. "encoding/gob"
  4. "math/rand"
  5. "os"
  6. "testing"
  7. "time"
  8. )
  9. // TestMain provides testing infrastructure within this package.
  10. func TestMain(m *testing.M) {
  11. rand.Seed(time.Now().UTC().UnixNano())
  12. gob.Register(&User{})
  13. os.Exit(m.Run())
  14. }