Guest User

Untitled

a guest
Jul 22nd, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. def test_trie_with_default_value
  2. @trie = Trie.new([])
  3. @trie["Ape"] = "Animal"
  4.  
  5. assert_equal "Animal", @trie["Ape"]
  6. assert_equal [], @trie["Invalid"]
  7. end
Add Comment
Please, Sign In to add comment