Sha256: ce99ab53397fdf4d87d667ae1dfd57aab469b62f7d1a4f45065d1192f573c79c

Contents?: true

Size: 1.34 KB

Versions: 5

Compression:

Stored size: 1.34 KB

Contents

# encoding: utf-8
require 'acceptance_helper'

describe 'On the page /resultset_processings with the helper :with_paginated_resultset that defines a callback on a resultset as an Array', type: :request, js: true do
  before :each do
    visit '/resultset_processings'
  end

  describe 'the callback' do
    it 'returns the records displayed on the page' do
      expect(page).to have_content('10 records on the current page: 507, 519, 537, 540, 511, 515, 523, 524, 527, and 531')
    end
  end

  describe 'WiceGrid' do
    it 'shows records displayed on all pages with a text filter selection' do
      fill_in('g_f_title', with: 'ed')
      expect(page).to have_content('1-2 / 2')
      expect(page).to have_content('2 records on the current page: 507 and 534')
    end

    it 'shows records displayed on all pages with a filter selection' do
      select 'no',  from: 'g_f_archived'
      expect(page).to have_content('1-10 / 46')
      expect(page).to have_content('10 records on the current page: 507, 519, 537, 540, 511, 515, 523, 527, 531, and 542')
    end

    it 'shows records displayed on all pages with a custom filter selection' do
      select 'Cancelled',  from: 'g_f_status_id'
      expect(page).to have_content('1-8 / 8')
      expect(page).to have_content('8 records on the current page: 511, 515, 523, 524, 527, 531, 542, and 551')
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
wice_grid-7.1.4 spec/features/resultset_processings_request_spec.rb
wice_grid-7.1.3 spec/features/resultset_processings_request_spec.rb
wice_grid-7.1.2 spec/features/resultset_processings_request_spec.rb
wice_grid-7.1.1 spec/features/resultset_processings_request_spec.rb
wice_grid-7.1.0 spec/features/resultset_processings_request_spec.rb