summaryrefslogtreecommitdiff
path: root/test/unit/invite_code_test.rb
blob: 2684f8e4cd23a5e7d48ebc16c0dc0f6d11f79560 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require 'test_helper'

class InviteCodeTest < ActiveSupport::TestCase

  test "it is created with an invite code" do
    code = InviteCode.new
    assert_not_nil code.invite_code
  end

  test "the invite code can be read from couch db correctly" do
    code1 = InviteCode.new
    code1.save

    code2 = InviteCode.find_by__id code1.id

    assert_equal code1.invite_code, code2.invite_code

  end


end