checkouts_test.rb 294 B

123456789
  1. require 'test_helper'
  2. class CheckoutsTest < Test::Unit::TestCase
  3. test "get all should get all orders" do
  4. fake 'checkouts', :method => :get, :status => 200, :body => load_fixture('checkouts')
  5. checkout = ShopifyAPI::Checkout.all
  6. assert_equal 450789469, checkout.first.id
  7. end
  8. end