test/soap/test_nestedexception.rb in rubyjedi-soap4r-1.5.8.20100616125722 vs test/soap/test_nestedexception.rb in rubyjedi-soap4r-1.5.8.20100619003610
- old
+ new
@@ -1,5 +1,6 @@
+# encoding: ASCII-8BIT
require 'helper'
require 'soap/soap'
module SOAP
@@ -38,32 +39,32 @@
end
end
if (RUBY_VERSION.to_f >= 1.9)
TOBE = [
- ":15:in `rescue in foo'",
- ":12:in `foo'",
- ":33:in `test_nestedexception'",
- ":23:in `rescue in bar': bar (SOAP::TestNestedException::MyError) [NESTED]",
- ":20:in `bar'",
+ ":16:in `rescue in foo'",
":13:in `foo'",
- ":33:in `test_nestedexception'",
- ":28:in `baz': baz (SOAP::TestNestedException::MyError) [NESTED]",
+ ":34:in `test_nestedexception'",
+ ":24:in `rescue in bar': bar (SOAP::TestNestedException::MyError) [NESTED]",
":21:in `bar'",
- ":13:in `foo'",
- ":33:in `test_nestedexception'"
+ ":14:in `foo'",
+ ":34:in `test_nestedexception'",
+ ":29:in `baz': baz (SOAP::TestNestedException::MyError) [NESTED]",
+ ":22:in `bar'",
+ ":14:in `foo'",
+ ":34:in `test_nestedexception'"
]
else
TOBE = [
- ":15:in `foo'",
- ":33:in `test_nestedexception'",
- ":23:in `bar': bar (SOAP::TestNestedException::MyError) [NESTED]",
- ":13:in `foo'",
- ":33:in `test_nestedexception'",
- ":28:in `baz': baz (SOAP::TestNestedException::MyError) [NESTED]",
- ":21:in `bar'",
- ":13:in `foo'",
- ":33:in `test_nestedexception'",
+ ":16:in `foo'",
+ ":34:in `test_nestedexception'",
+ ":24:in `bar': bar (SOAP::TestNestedException::MyError) [NESTED]",
+ ":14:in `foo'",
+ ":34:in `test_nestedexception'",
+ ":29:in `baz': baz (SOAP::TestNestedException::MyError) [NESTED]",
+ ":22:in `bar'",
+ ":14:in `foo'",
+ ":34:in `test_nestedexception'",
]
end
end
end