spec/airborne/post_spec.rb in airborne-0.1.8 vs spec/airborne/post_spec.rb in airborne-0.1.9
- old
+ new
@@ -7,11 +7,11 @@
post '/simple_post', {}
expect_json_types({status: :string, someNumber: :int})
end
it 'should allow testing on post requests' do
- url = 'http://www.example.com/simple_post'
+ url = 'http://www.example.com/simple_post'
stub_request(:post, url)
post '/simple_post', 'hello', {content_type: "text/plain"}
expect(WebMock).to have_requested(:post, url).with(:body => "hello", :headers => {'Content-Type' => 'text/plain'})
end
-end
\ No newline at end of file
+end