Sha256: c008f688ba758752ece10055dbb09eadf1b5b49ec11c9318e02bc49177dae737

Contents?: true

Size: 689 Bytes

Versions: 1

Compression:

Stored size: 689 Bytes

Contents

require 'spec_helper'

root_dir = RailsAssist::Directory.rails_root

describe 'mailer helper' do
  load_helper :mailer

  before :each do
    create_mailer :account do
      %q{
        def mail_it!
        end
      }
    end
  end

  after :each do
    # remove_mailer :account
  end

  it "should have an account mailer file with a mail_it! method inside" do
    root_dir.should_not have_mailer :user
    root_dir.should have_mailer :account do |klass|
      klass.should have_method :mail_it!
    end

    root_dir.should have_mailer_file :account do |file|
      file.should have_mailer_class :account do |klass|
        klass.should have_method :mail_it!
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rails-app-spec-0.5.0 spec/rails_app_spec/matchers/artifact/mailer_spec.rb