소스 검색

Fixing typo........

Ben Cox 11 년 전
부모
커밋
fa337b3c19
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      test/fulfillment_service_test.rb

+ 1 - 1
test/fulfillment_service_test.rb

@@ -2,7 +2,7 @@ require 'test_helper'
 
 class FulFillmentServiceTest < Test::Unit::TestCase
 	test 'new should create fulfillment service' do
-		fake "fulfillment_service", :method => :post
+		fake "fulfillment_services", :method => :post, :body => load_fixture('fulfillment_service')
 		fulfillment_service = ShopifyAPI::FulfillmentService.new(:name => "SomeService")
 		fulfillment_service.save
 		assert_equal "SomeService" , fulfillment_service.name