~ubuntu-branches/ubuntu/maverick/newsbeuter/maverick

« back to all changes in this revision

Viewing changes to test/test-reloadthread.rb

  • Committer: Bazaar Package Importer
  • Author(s): Nico Golde
  • Date: 2009-04-21 14:06:18 UTC
  • mfrom: (4.1.7 sid)
  • Revision ID: james.westby@ubuntu.com-20090421140618-osnjk19bgkebyg9h
Tags: 2.0-1
* New upstream release.
  - Remove dependeny on mrss and nxml and add libxml2, newsbeuter
    now comes with its own parser.
  - Remove debian/patches and quilt dependency.
* Bump to policy 3.8.1, no changes needed.
* debian/copyright: adjust years.
* Remove dh_clean -k call as it is deprecated -> dh_prep.
* Change newsbeuter homepage, it now has an official one.
* Fix watch file url, new upstream code location.
* Add bookmark-scuttle.sh to installed contrib files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
# auto-generated tuitest script
3
3
require 'tuitest'
4
4
 
5
 
Kernel.system("rm -f cache")
 
5
Kernel.system("rm -f cache cache.lock")
6
6
 
7
7
Tuitest.init
8
8
verifier = Tuitest::Verifier.new("test-reloadthread.rb.log", "RESULT-test-reloadthread.rb.xml")
9
9
 
10
10
 
11
 
Tuitest.run("../newsbeuter -c cache -C config-reloadthread -u urls-tuitest1")
 
11
if ENV["OFFLINE"] then
 
12
        Tuitest.run("../newsbeuter -c cache -C config-reloadthread -u urls-tuitest1-offline")
 
13
else
 
14
        Tuitest.run("../newsbeuter -c cache -C config-reloadthread -u urls-tuitest1")
 
15
end
12
16
 
13
17
 
14
18
Tuitest.wait_until_expected_text(0, 0, "newsbeuter ", 5000)
24
28
Tuitest.close
25
29
verifier.finish
26
30
 
27
 
Kernel.system("rm -f cache")
 
31
Kernel.system("rm -f cache cache.lock")
28
32
 
29
33
# EOF