countable_test.rb 247 B

12345678910111213
  1. require 'test_helper'
  2. class CountableTest < Test::Unit::TestCase
  3. def setup
  4. super
  5. fake("products/count", body: '{"count": 16}')
  6. end
  7. def test_count_products
  8. count = ShopifyAPI::Product.count
  9. assert_equal(16, count)
  10. end
  11. end