Files
RubyMotion/test/test-android/app/rubymotion/java_exceptions_spec.rb
2014-10-06 12:03:10 +02:00

6 lines
165 B
Ruby

describe "Java exceptions" do
it "can be catched by a rescue block" do
lambda { Java::Util::ArrayList.new.remove(42) }.should raise_error(Exception)
end
end