aboutsummaryrefslogtreecommitdiffstats
path: root/spec/controllers/admin_raw_email_controller_spec.rb
blob: c1e939ee1bf8fbf96e28203a4041208ac3bd183b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')

describe AdminRawEmailController do

    describe :show do

        it 'renders the show template' do
            raw_email = FactoryGirl.create(:incoming_message).raw_email
            get :show, :id => raw_email.id
        end

    end

end