test/test_rubypython.rb in rubypython-0.2.2 vs test/test_rubypython.rb in rubypython-0.2.3
- old
+ new
@@ -28,17 +28,17 @@
o.free_pobj
end
assert(RubyPython.stop)
end
- def test_double_import
+ def test_two_imports
RubyPython.start
RubyPython.import "cPickle"
RubyPython.import "urllib"
RubyPython.stop
end
- def test_handle_error
+ def test_propogate_python_errror
RubyPython.start
assert_raise PythonError do
RubyPython.import "slasdfj"
end
RubyPython.stop