get rid of old SVN structure

This commit is contained in:
Ward Wouts 2020-03-11 07:23:11 +01:00
parent 64eaf7c89f
commit 08e83501be
324 changed files with 0 additions and 70245 deletions

16
news/tests/newsrc_test.rb Executable file
View file

@ -0,0 +1,16 @@
#!/usr/local/bin/ruby
require '../newsrc.rb'
def test1
print "Test 1\n"
@newsrc = News::Newsrc.new("newsrc.news.wizeazz.nl")
print @newsrc.get_articles("alt.binaries.sounds.mp3.gothic-industrial")
print "\n"
@newsrc.unmark_range("alt.binaries.sounds.mp3.gothic-industrial", 0, 2394540)
print @newsrc.get_articles("alt.binaries.sounds.mp3.gothic-industrial")
print "\n"
end
test1