I'm referring to this test in about_symbols.rb in Ruby Koans https://github.com/edgecase/ruby_koans/blob/master/koans/about_symbols.rb#L26

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


  # THINK ABOUT IT:
  #
  # Why do we convert the list of symbols to strings and then compare
  # against the string value rather than against symbols?

Why exactly do we have to convert that list into strings first?

link|improve this question
Please provide a link to the koan, so that we can see the larger context. – Andrew Grimm Jan 13 '11 at 22:38
Just added a link. Thanks for your suggestion! – codercode Jan 13 '11 at 22:40
feedback

2 Answers

up vote 26 down vote accepted

This has to do with how symbols work. For each symbol, only one of it actually exists. Behind the scenes, a symbol is just a number referred to by a name (starting with a colon). Thus, when comparing the equality of two symbols, you're comparing object identity and not the content of the identifier that refers to this symbol.

If you were to do the simple test :test == "test", it will be false. So, if you were to gather all of the symbols defined thus far into an array, you would need to convert them to strings first before comparing them. You can't do this the opposite way (convert the string you want to compare into a symbol first) because doing that would create the single instance of that symbol and "pollute" your list with the symbol you're testing for existence.

Hope that helps. This is a bit of an odd one, because you have to test for the presence of a symbol without accidentally creating that symbol during the test. You usually don't see code like that.

link|improve this answer
Great answer. Oddly, the very next koan leads you down a path to that very trap, without really warning you about it - it has the code "all_symbols.include?(__)" which (because of the issue noted above) always evaluates to true no matter what symbol you stick inside the parentheses. – Bruce Sep 23 '11 at 21:09
Note that a better way of doing this safely is to assign the output of Symbol.all_symbols to a variable, then test for inclusion. Symbols are faster at comparison, and you're avoiding converting thousands of symbols into strings. – coreyward Nov 28 '11 at 17:49
1  
That still has the problem of creating the symbol which can't be destroyed. Any future tests for that symbol will be ruined. But this is just a Koan, it doesn't have to make much sense or be fast, just demonstrate how symbols work. – AboutRuby Nov 29 '11 at 10:50
feedback

Because if you do

assert_equal true, all_symbols.include?(:test_method_names_become_symbols)

it may (depending on your ruby implementation) automatically be true, because asking about :test_method_names_become_symbols creates it. See this bug report.

link|improve this answer
Alright, thanks a lot! – codercode Jan 13 '11 at 22:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.