spec/airborne/post_spec.rb in airborne-0.1.5 vs spec/airborne/post_spec.rb in airborne-0.1.6

- old
+ new

@@ -1,9 +1,17 @@ require 'spec_helper' +require 'webmock/rspec' describe 'post' do it 'should allow testing on post requests' do mock_post('simple_post') 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' + 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