countable_test.rb 238 B

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