require 'test_helper'

class IndexTest < ActionMailer::TestCase
  test "send" do
    @expected.subject = 'Index#send'
    @expected.body    = read_fixture('send')
    @expected.date    = Time.now

    assert_equal @expected.encoded, Index.create_send(@expected.date).encoded
  end

end
