Skip to content

Instantly share code, notes, and snippets.

@rolandobrown
Created August 25, 2015 09:46
Show Gist options
  • Save rolandobrown/fa12a3f7bb78cf4b75c2 to your computer and use it in GitHub Desktop.
Save rolandobrown/fa12a3f7bb78cf4b75c2 to your computer and use it in GitHub Desktop.
RSpec Syntax should_be Expect
Old: my_object.should_not_be_a_kind_of(Foo)
New: expect(my_object).not_to be_a_kind_of(Foo)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment