diff options
author | Alex Auvolat <alex@adnab.me> | 2018-09-01 16:07:22 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2018-09-01 16:07:22 +0200 |
commit | 81b5a844a2a155e28c497a8ce671eb5f02803e5d (patch) | |
tree | 15e878ebe47d5993e7af46a48a1ccdc1dd1e4b2f /shardweb/test/support/channel_case.ex | |
parent | c6ec33d6e612168e14d77007915a4ea423c55a2e (diff) | |
download | shard-81b5a844a2a155e28c497a8ce671eb5f02803e5d.tar.gz shard-81b5a844a2a155e28c497a8ce671eb5f02803e5d.zip |
Import shardweb0.0.2
Diffstat (limited to 'shardweb/test/support/channel_case.ex')
-rw-r--r-- | shardweb/test/support/channel_case.ex | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/shardweb/test/support/channel_case.ex b/shardweb/test/support/channel_case.ex new file mode 100644 index 0000000..eb16bc9 --- /dev/null +++ b/shardweb/test/support/channel_case.ex @@ -0,0 +1,33 @@ +defmodule ShardWeb.ChannelCase do + @moduledoc """ + This module defines the test case to be used by + channel tests. + + Such tests rely on `Phoenix.ChannelTest` and also + import other functionality to make it easier + to build common datastructures and query the data layer. + + Finally, if the test case interacts with the database, + it cannot be async. For this reason, every test runs + inside a transaction which is reset at the beginning + of the test unless the test case is marked as async. + """ + + use ExUnit.CaseTemplate + + using do + quote do + # Import conveniences for testing with channels + use Phoenix.ChannelTest + + # The default endpoint for testing + @endpoint ShardWeb.Endpoint + end + end + + + setup _tags do + :ok + end + +end |