aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test
diff options
context:
space:
mode:
authorRafael França <rafaelmfranca@gmail.com>2017-01-31 00:54:01 -0500
committerGitHub <noreply@github.com>2017-01-31 00:54:01 -0500
commit6d8fdd136b0e922be5bb6cc103ffdb244d73248e (patch)
treef9a1cb6aa6ed9e11e34f69afd88c284a714b6df0 /activesupport/test
parentebededb3726a8143a4372fdf19ad10fe9fe2e233 (diff)
parent3585155f1b1150a027af26434ab96aedd686ca66 (diff)
downloadrails-6d8fdd136b0e922be5bb6cc103ffdb244d73248e.tar.gz
rails-6d8fdd136b0e922be5bb6cc103ffdb244d73248e.tar.bz2
rails-6d8fdd136b0e922be5bb6cc103ffdb244d73248e.zip
Merge pull request #27824 from kenta-s/raise-an-error-if-no-block-given
Raise an error if FileUpdateChecker#execute is called with no block
Diffstat (limited to 'activesupport/test')
-rw-r--r--activesupport/test/file_update_checker_shared_tests.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/activesupport/test/file_update_checker_shared_tests.rb b/activesupport/test/file_update_checker_shared_tests.rb
index 48cd387196..de8796bf06 100644
--- a/activesupport/test/file_update_checker_shared_tests.rb
+++ b/activesupport/test/file_update_checker_shared_tests.rb
@@ -273,4 +273,11 @@ module FileUpdateCheckerSharedTests
assert checker.execute_if_updated
assert_equal 2, i
end
+
+ test "execute raises an ArgumentError if no block given" do
+ checker = new_checker([])
+ assert_raise ArgumentError do
+ checker.execute
+ end
+ end
end