test/signore/mapper_test.rb in signore-0.4.0 vs test/signore/mapper_test.rb in signore-0.4.1
- old
+ new
@@ -22,16 +22,16 @@
'For the sake of topic titles, I’d rather if Monty saved Python.'
end
describe '.from_h' do
it 'deserializes a Signature from a Hash' do
- Mapper.from_h(sig_hash).must_equal signature
+ _(Mapper.from_h(sig_hash)).must_equal signature
end
end
describe '.to_h' do
it 'serialises a Signature to a Hash' do
- Mapper.to_h(signature).must_equal sig_hash
+ _(Mapper.to_h(signature)).must_equal sig_hash
end
end
end
end