forked from zmalltalker/stomp
-
Notifications
You must be signed in to change notification settings - Fork 80
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
wishlist: convert specs to RSpec3 style #114
Comments
Can you please try the gem code:
and let me know if it meets your requirements for RSpec 3. Please provide detailed feedback if this 'fails'. Thanks, G. |
Please try gem version 1.3.5. Let me know if there are problems. Please close this issue of all is OK. Regards, Guy |
Fix: b3576a3 Version: 1.3.5 Please install the latest gem. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
Would you please consider modify the syntax of the specs to make them run with RSpec3?
Basically, it boils down:
-replace
be_true
andbe_false
bybe true
andbe false
-replace
stub!
bystub
, andmock
bydouble
The following spec 'should return an empty message when receiving an empty string or nil parameter' in message_spec.rb fails with RSpec3 because
empty?
is a private method.The text was updated successfully, but these errors were encountered: