Skip to content
代码片段 群组 项目
提交 5303cc28 编辑于 作者: Robb Kidd's avatar Robb Kidd
浏览文件

Add resque_spec to test queuing mail.

上级 6617eaaf
No related branches found
No related tags found
无相关合并请求
...@@ -77,4 +77,5 @@ group :test do ...@@ -77,4 +77,5 @@ group :test do
gem "simplecov", :require => false gem "simplecov", :require => false
gem "shoulda-matchers" gem "shoulda-matchers"
gem 'email_spec' gem 'email_spec'
gem 'resque_spec'
end end
...@@ -263,6 +263,9 @@ GEM ...@@ -263,6 +263,9 @@ GEM
resque_mailer (2.0.3) resque_mailer (2.0.3)
actionmailer (>= 3.0.0) actionmailer (>= 3.0.0)
resque (>= 1.2.3) resque (>= 1.2.3)
resque_spec (0.11.0)
resque (>= 1.19.0)
rspec (>= 2.5.0)
rspec (2.10.0) rspec (2.10.0)
rspec-core (~> 2.10.0) rspec-core (~> 2.10.0)
rspec-expectations (~> 2.10.0) rspec-expectations (~> 2.10.0)
...@@ -391,6 +394,7 @@ DEPENDENCIES ...@@ -391,6 +394,7 @@ DEPENDENCIES
redcarpet (~> 2.1.1) redcarpet (~> 2.1.1)
resque (~> 1.20.0) resque (~> 1.20.0)
resque_mailer resque_mailer
resque_spec
rspec-rails rspec-rails
sass-rails (= 3.2.5) sass-rails (= 3.2.5)
seed-fu seed-fu
......
Resque::Mailer.excluded_environments = []
...@@ -88,6 +88,7 @@ ...@@ -88,6 +88,7 @@
fill_in 'Name', :with => 'NewProject' fill_in 'Name', :with => 'NewProject'
fill_in 'Code', :with => 'NPR' fill_in 'Code', :with => 'NPR'
fill_in 'Path', :with => 'gitlabhq_1' fill_in 'Path', :with => 'gitlabhq_1'
fill_in 'Description', :with => 'New Project Description'
expect { click_button "Save" }.to change { Project.count }.by(1) expect { click_button "Save" }.to change { Project.count }.by(1)
@project = Project.last @project = Project.last
end end
......
...@@ -45,7 +45,9 @@ ...@@ -45,7 +45,9 @@
end end
it "should send valid email to user with email & password" do it "should send valid email to user with email & password" do
click_button "Save" with_resque do
click_button "Save"
end
user = User.last user = User.last
email = ActionMailer::Base.deliveries.last email = ActionMailer::Base.deliveries.last
email.subject.should have_content("Account was created") email.subject.should have_content("Account was created")
......
...@@ -133,7 +133,9 @@ ...@@ -133,7 +133,9 @@
end end
it "should send valid email to user" do it "should send valid email to user" do
click_button "Submit new issue" with_resque do
click_button "Submit new issue"
end
issue = Issue.last issue = Issue.last
email = ActionMailer::Base.deliveries.last email = ActionMailer::Base.deliveries.last
email.subject.should have_content("New Issue was created") email.subject.should have_content("New Issue was created")
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册