Skip to content

Instantly share code, notes, and snippets.

@ericboehs
Last active September 24, 2019 04:39
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 ericboehs/f486e2515efbb8e5aeabf871876f9026 to your computer and use it in GitHub Desktop.
Save ericboehs/f486e2515efbb8e5aeabf871876f9026 to your computer and use it in GitHub Desktop.
require 'minitest/autorun'
class TestArray < Minitest::Test
def test_array
assert_includes %(a b c), 'a'
end
def test_array_refutation
refute_includes %(a b c), 'd'
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment