summaryrefslogtreecommitdiff
path: root/test/test_mime_types_lazy.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_mime_types_lazy.rb')
-rw-r--r--test/test_mime_types_lazy.rb12
1 files changed, 9 insertions, 3 deletions
diff --git a/test/test_mime_types_lazy.rb b/test/test_mime_types_lazy.rb
index 75e8dc7..e730ba1 100644
--- a/test/test_mime_types_lazy.rb
+++ b/test/test_mime_types_lazy.rb
@@ -22,17 +22,23 @@ describe MIME::Types, 'lazy loading' do
describe '.lazy_load?' do
it 'is true when RUBY_MIME_TYPES_LAZY_LOAD is set' do
- assert_equal true, MIME::Types.send(:lazy_load?)
+ assert_output '', /RUBY_MIME_TYPES_LAZY_LOAD/ do
+ assert_equal true, MIME::Types.send(:lazy_load?)
+ end
end
it 'is nil when RUBY_MIME_TYPES_LAZY_LOAD is unset' do
ENV['RUBY_MIME_TYPES_LAZY_LOAD'] = nil
- assert_equal nil, MIME::Types.send(:lazy_load?)
+ assert_output '', '' do
+ assert_nil MIME::Types.send(:lazy_load?)
+ end
end
it 'is false when RUBY_MIME_TYPES_LAZY_LOAD is false' do
ENV['RUBY_MIME_TYPES_LAZY_LOAD'] = 'false'
- assert_equal false, MIME::Types.send(:lazy_load?)
+ assert_output '', /RUBY_MIME_TYPES_LAZY_LOAD/ do
+ assert_equal false, MIME::Types.send(:lazy_load?)
+ end
end
end