aboutsummaryrefslogtreecommitdiff
path: root/test/mailchimp_test.exs
blob: b896fc4561d55bb36930b8baef0cc28fdf63ee02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
defmodule MailchimpTest do
  use ExUnit.Case

  test "if mailchimp apikey config exists" do
    prop = Application.get_env(:mailchimp, :apikey)
    assert false == is_nil prop
  end

  test "if apikey contains the server name" do
    len = Application.get_env(:mailchimp, :apikey)
    |> String.split(~r{-})
    |> length
    assert len == 2
  end

  test "it can start application" do
    {status, _} = Mailchimp.start_link([])
    assert :ok == status
  end

  test "it can get shard from apikey" do
    shard = Mailchimp.get_shard
    assert false == is_nil shard
  end
  
end