Created
January 23, 2011 09:41
-
-
Save nicwn/791940 to your computer and use it in GitHub Desktop.
ruby koans
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
def test_method_names_become_symbols | |
symbols_as_strings = Symbol.all_symbols.map { |x| x.to_s } | |
assert_equal true, symbols_as_strings.include?("test_method_names_become_symbols") | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment