summaryrefslogtreecommitdiff
path: root/test/rubygems/test_open_uri.rb
blob: 6f18b7bb6b78cbed1a776778fdcd50a1c02bdd27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'test/unit'
require 'rubygems/gem_open_uri'

class TestOpenURI < Test::Unit::TestCase

  def test_open_uri_not_broken
    assert_nothing_raised do
      open __FILE__ do end
    end
  end

end