Created
May 18, 2015 15:26
-
-
Save midu/8b6120e5387fb6337972 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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