test/spieker_test.rb in spieker-0.0.2 vs test/spieker_test.rb in spieker-0.0.3

- old
+ new

@@ -1,17 +1,11 @@ -require 'test/unit' +require 'test_helper' -require 'spieker.rb' - class TestSpieker < Test::Unit::TestCase def setup @crawler = Spieker::Crawler.new('http://www.google.com/path') end def test_current_path assert_equal '/path', @crawler.current_path - end - - def test_all_links - assert_equal [], @crawler.current_links end end