Sha256: 3b8f22a025ffbd4cd0e668d066261f21305eeaa7b94263ee8b09a350c1cfed32
Contents?: true
Size: 1.14 KB
Versions: 1
Compression:
Stored size: 1.14 KB
Contents
require 'test/unit' require 'webloc' require 'tempfile' class WeblocTest < Test::Unit::TestCase def test_webloc_object_requires_url assert_raise(ArgumentError) { Webloc.new } end def test_webloc_object_created_with_url assert_equal 'http://example.com', Webloc.new('http://example.com').url end def test_webloc_object_loaded_from_old_style_file assert_equal 'https://github.com/peterc/webloc', Webloc.load(File.dirname(__FILE__) + '/oldstyle.webloc').url end def test_webloc_object_loaded_from_plist_file assert_equal 'https://github.com/peterc/webloc', Webloc.load(File.dirname(__FILE__) + '/pliststyle.webloc').url end def test_webloc_generates_valid_data data = File.read(File.dirname(__FILE__) + '/oldstyle.webloc') assert_equal data, Webloc.new('https://github.com/peterc/webloc').data end def test_webloc_can_write_file file = Tempfile.new('test-webloc') begin Webloc.new('https://github.com/peterc/webloc').save(file.path) assert_equal Webloc.new('https://github.com/peterc/webloc').data, File.read(file.path) ensure file.close file.unlink end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
webloc-0.1.0 | test/webloc_test.rb |