spec/pio/echo/reply_spec.rb in pio-0.9.0 vs spec/pio/echo/reply_spec.rb in pio-0.10.0
- old
+ new
@@ -27,13 +27,10 @@
end
context 'with 2**32' do
When(:result) { Pio::Echo::Reply.new(2**32) }
- Then do
- pending 'check if xid is within 32bit range.'
- result == Failure(ArgumentError)
- end
+ Then { result == Failure(ArgumentError) }
end
context 'with transaction_id: 123' do
When(:echo_reply) { Pio::Echo::Reply.new(transaction_id: 123) }