Sha256: 4544e93a6642ac2d50c6d3bf1463f38f20533c779ffc8c9dfc9d0cfa1fbb8ccd

Contents?: true

Size: 682 Bytes

Versions: 8

Compression:

Stored size: 682 Bytes

Contents

require 'test_helper'

module PushType
  class UsersControllerTest < ActionController::TestCase

    let(:current_user) { FactoryGirl.create(:confirmed_user) }
    let(:user) { FactoryGirl.create :user }
    before { sign_in current_user }

    let(:last_email) { ActionMailer::Base.deliveries.last }
    
    describe 'PUT #invite' do
      let(:referer) { '/push_type/users' }
      before do
        @request.env["HTTP_REFERER"] = referer
        put :invite, params: { id: user.id }
      end
      it { response.must_redirect_to referer }
      it { last_email.to.must_include user.email }
      it { last_email.subject.must_include 'Confirm your account' }
    end

  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
push_type_auth-0.9.5 test/controllers/push_type/users_controller_test.rb
push_type_auth-0.9.3 test/controllers/push_type/users_controller_test.rb
push_type_auth-0.9.2 test/controllers/push_type/users_controller_test.rb
push_type_auth-0.9.1 test/controllers/push_type/users_controller_test.rb
push_type_auth-0.9.0 test/controllers/push_type/users_controller_test.rb
push_type_auth-0.9.0.beta.4 test/controllers/push_type/users_controller_test.rb
push_type_auth-0.9.0.beta.3 test/controllers/push_type/users_controller_test.rb
push_type_auth-0.9.0.beta.2 test/controllers/push_type/users_controller_test.rb