Sha256: 3429046ef41a27f5f2f7ca3c8f7f0fd7b8ae68caea4f3a5b6d3b425a841623b6
Contents?: true
Size: 590 Bytes
Versions: 37
Compression:
Stored size: 590 Bytes
Contents
require 'test_helper' module Workarea module Admin class IndexTrackingIntegrationTest < Workarea::IntegrationTest include Admin::IntegrationTest def test_track_index_filters get admin.pricing_skus_path assert_equal(admin.pricing_skus_path, session[:last_index_path]) assert_no_changes -> { session[:last_index_path] } do get admin.catalog_products_path(format: :json) end assert_no_changes -> { session[:last_index_path] } do get admin.catalog_products_path, xhr: true end end end end end
Version data entries
37 entries across 37 versions & 1 rubygems