We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21031c1 commit bb28116Copy full SHA for bb28116
2 files changed
spec/data_structure/data_structure_spec.rb
@@ -18,7 +18,9 @@
18
}
19
]
20
21
- objs.each do |model:, data:|
+ objs.each do |obj|
22
+ model = obj[:model]
23
+ data = obj[:data]
24
describe model do
25
let(:inst) { model.deserialize(data) }
26
spec/data_typing/data_typing_spec.rb
@@ -15,7 +15,10 @@
15
16
17
+
describe "#type" do
it "reserializes to original value" do
0 commit comments