~brightbox/brightbox/libeventmachine-ruby

« back to all changes in this revision

Viewing changes to tests/test_exc.rb

  • Committer: Bazaar Package Importer
  • Author(s): Ryan Niebur
  • Date: 2009-04-24 21:49:36 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20090424214936-mqmxw5vk83oa7pk3
Tags: 0.12.6-1
* New upstream version
* add myself to uploaders
* change Section to ruby
* change the -ruby and -doc packages to Architecture all as they are
  architecture independent
  - change the versioned dependency to make it binnmu-able
* fix copyright for debian packaging in debian/copyright
* depend on ${misc:Depends} for all packages
* debian policy 3.8.1
* update Vcs-* fields for the move from packages-wip to package
* update upstream copyright to 2008, as some files say that year

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
    # because the machine wasn't cleaned up properly.
39
39
 
40
40
    def test_a
41
 
        assert_raise(RuntimeError) {
 
41
        assert_raises(RuntimeError) {
42
42
            EventMachine.run {
43
43
                raise "some exception"
44
44
            }
46
46
    end
47
47
 
48
48
    def test_b
49
 
        assert_raise(RuntimeError) {
 
49
        assert_raises(RuntimeError) {
50
50
            EventMachine.run {
51
51
                raise "some exception"
52
52
            }