mirror of
https://github.com/simplex-chat/simplexmq.git
synced 2026-03-30 20:45:52 +00:00
* package and module docs, remove Simplex.Markdown (moved to simplex-chat), rename Agent.Transmission to Agent.Protocol * move errors.md to haddock comments, Transport docs * add CHANGELOG.md, add missing package versions * changelog, copyright * docs for Simplex.Messaging.Crypto * consistent punctuation * use absolute URLs in readme * correction
15 lines
411 B
Haskell
15 lines
411 B
Haskell
import AgentTests
|
|
import ProtocolErrorTests
|
|
import ServerTests
|
|
import System.Directory (createDirectoryIfMissing, removeDirectoryRecursive)
|
|
import Test.Hspec
|
|
|
|
main :: IO ()
|
|
main = do
|
|
createDirectoryIfMissing False "tests/tmp"
|
|
hspec $ do
|
|
describe "Protocol errors" protocolErrorTests
|
|
describe "SMP server" serverTests
|
|
describe "SMP client agent" agentTests
|
|
removeDirectoryRecursive "tests/tmp"
|