1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Make it clear that the later test is skipped for adapters that do not implement it

This commit is contained in:
David Heinemeier Hansson 2014-05-20 19:19:14 +02:00
parent 8df6a0b2da
commit 708775cdb3

View file

@ -23,6 +23,7 @@ class QueuingTest < ActiveSupport::TestCase
result = HelloJob.enqueue_at 1.second.ago, "Jamie"
assert result
rescue NotImplementedError
skip
end
end
end