Add test coverage for symbol round-tripping in Hash field values

XMLWordPrintableJSON

    • Type: Improvement
    • Resolution: Fixed
    • Priority: Major - P3
    • 7.0.6, 7.1.0
    • Affects Version/s: None
    • Component/s: None
    • None
    • None
    • None
    • None
    • None
    • None
    • None

      Mongoid round-trips symbol values in hashes:

      
      butler% irb -rmongoid
      irb(main):001:0> Hash.from_bson({foo: :bar}.to_bson)
      => {"foo"=>:bar}
      
      

      This behavior is different from that of bson-ruby:

      butler% irb -rbson
      irb(main):001:0> Hash.from_bson({foo: :bar}.to_bson)
      => {"foo"=>"bar"}
      

      As far as I can see there are no tests for this. This ticket is to add the missing test coverage.

            Assignee:
            Oleg Pudeyev (Inactive)
            Reporter:
            Oleg Pudeyev (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved: