test/test_mailer_generator.rb in padrino-gen-0.8.5 vs test/test_mailer_generator.rb in padrino-gen-0.9.0
- old
+ new
@@ -17,27 +17,27 @@
should "support generating a new mailer extended from base" do
silence_logger { @project.start(['sample_project', '--root=/tmp', '--script=none', '-t=bacon']) }
silence_logger { @mail_gen.start(['demo', '-r=/tmp/sample_project']) }
assert_match_in_file(/class DemoMailer < Padrino::Mailer::Base/m, '/tmp/sample_project/app/mailers/demo_mailer.rb')
- assert_match_in_file(/Padrino::Mailer::Base.smtp_settings/m, '/tmp/sample_project/config/initializers/mailer.rb')
+ assert_match_in_file(/Padrino::Mailer::Base.smtp_settings/m, '/tmp/sample_project/lib/mailer.rb')
assert_file_exists('/tmp/sample_project/app/views/demo_mailer')
end
should "support generating a new mailer extended from base with long name" do
silence_logger { @project.start(['sample_project', '--root=/tmp', '--script=none', '-t=bacon']) }
silence_logger { @mail_gen.start(['user_notice', '-r=/tmp/sample_project']) }
assert_match_in_file(/class UserNoticeMailer/m, '/tmp/sample_project/app/mailers/user_notice_mailer.rb')
- assert_match_in_file(/Padrino::Mailer::Base.smtp_settings/m, '/tmp/sample_project/config/initializers/mailer.rb')
+ assert_match_in_file(/Padrino::Mailer::Base.smtp_settings/m, '/tmp/sample_project/lib/mailer.rb')
assert_file_exists('/tmp/sample_project/app/views/user_notice_mailer')
end
should "support generating a new mailer extended from base with capitalized name" do
silence_logger { @project.start(['sample_project', '--root=/tmp', '--script=none', '-t=bacon']) }
silence_logger { @mail_gen.start(['DEMO', '-r=/tmp/sample_project']) }
assert_match_in_file(/class DemoMailer < Padrino::Mailer::Base/m, '/tmp/sample_project/app/mailers/demo_mailer.rb')
- assert_match_in_file(/Padrino::Mailer::Base.smtp_settings/m, '/tmp/sample_project/config/initializers/mailer.rb')
+ assert_match_in_file(/Padrino::Mailer::Base.smtp_settings/m, '/tmp/sample_project/lib/mailer.rb')
assert_file_exists('/tmp/sample_project/app/views/demo_mailer')
end
end
context "the mailer destroy option" do
@@ -46,10 +46,10 @@
silence_logger { @project.start(['sample_project', '--root=/tmp', '--script=none', '-t=bacon']) }
silence_logger { @mail_gen.start(['demo', '-r=/tmp/sample_project']) }
silence_logger { @mail_gen.start(['demo', '-r=/tmp/sample_project','-d']) }
assert_no_dir_exists('/tmp/sample_project/app/views/demo_mailer')
assert_no_file_exists('/tmp/sample_project/app/mailers/demo_mailer.rb')
- assert_no_file_exists('/tmp/sample_project/config/initializers/mailer.rb')
+ assert_no_file_exists('/tmp/sample_project/lib/mailer.rb')
end
end
end