Skip to content

Instantly share code, notes, and snippets.

@semmons99
Created February 11, 2011 14:12
Show Gist options
  • Save semmons99/822394 to your computer and use it in GitHub Desktop.
Save semmons99/822394 to your computer and use it in GitHub Desktop.
def test_trie_with_default_value
@trie = Trie.new([])
@trie["Ape"] = "Animal"
assert_equal "Animal", @trie["Ape"]
assert_equal [], @trie["Invalid"]
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment