customer_test.rb 346 B

12345678910
  1. require 'test_helper'
  2. class CustomerTest < Test::Unit::TestCase
  3. def test_search
  4. fake "customers/search.json?query=Bob+country%3AUnited+States", extension: false, body: load_fixture('customers_search')
  5. results = ShopifyAPI::Customer.search(query: 'Bob country:United States')
  6. assert_equal 'Bob', results.first.first_name
  7. end
  8. end