You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The title is nil, because the translations are not dup'ed:
post_dup.title#=> nil
There is already a spec for this which is disabled for KeyValue backends (AR + Sequel), so if someone works on this, just remove that skip code and make the test pass.
The text was updated successfully, but these errors were encountered:
#84 fixed this issue for the Table backend, but it is still broken for the KeyValue backend.
Context
dup
does not duplicate translations. Suppose we have:Expected Behavior
The
title
of the dup'ed post should be"foo"
:Actual Behavior
The
title
is nil, because the translations are not dup'ed:There is already a spec for this which is disabled for KeyValue backends (AR + Sequel), so if someone works on this, just remove that skip code and make the test pass.
The text was updated successfully, but these errors were encountered: