records_test.rb 228 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 require_relative "test_helper" class RecordsTest < Minitest::Test def test_records skip if cequel? store_names ["Milk", "Apple"] assert_equal Product.search("milk").records.where(name: "Milk").count, 1 end end