Skip to content

Instantly share code, notes, and snippets.

@midu
Created May 18, 2015 15:26
Show Gist options
  • Save midu/8b6120e5387fb6337972 to your computer and use it in GitHub Desktop.
Save midu/8b6120e5387fb6337972 to your computer and use it in GitHub Desktop.
RSpec.describe [1, 2, 3] do
it { is_expected.to include(1) }
it { is_expected.not_to include(4) }
it { is_expected.to include(Fixnum) }
it { is_expected.to include(Object) }
it { is_expected.not_to include(Float) }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment