Skip to content

Instantly share code, notes, and snippets.

@edubkendo
Created December 21, 2012 07:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save edubkendo/4351297 to your computer and use it in GitHub Desktop.
Save edubkendo/4351297 to your computer and use it in GitHub Desktop.
why didnt the second test fail?
require "vertx"
require "java"
include Vertx
Vertx.deploy_verticle('RSpecGreeter.java') {}
describe "RSpec Greeter" do
it "should say 'Hello RSpec!' when it recieves the greet() message" do
vessel = ""
Vertx::EventBus.send("rspecgreeter.greet", "greet") do |message|
vessel = message.body
end
1.should == 3
sleep(3)
puts vessel
vessel.should == "Hello RSpec!"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment