Sha256: 0ed684b5f97d57d2cd86a003f474c3f3f5c090943ce7992066211226935111db

Contents?: true

Size: 665 Bytes

Versions: 12

Compression:

Stored size: 665 Bytes

Contents

# encoding: utf-8
require 'acceptance_helper'

describe 'negation WiceGrid', type: :request, js: true do
  before :each do
    visit '/negation'
  end

  it 'should negate the semantics of the text  filter' do
    fill_in('grid_f_title_v', with: 'sed')
    select 'no', from: 'grid_f_archived'

    find(:css, '#grid_submit_grid_icon').click

    expect(page).to have_content('sed impedit iste')
    expect(page).to have_no_content('ut ipsum excepturi')

    find(:css, '#grid_f_title_n').click

    find(:css, '#grid_submit_grid_icon').click

    expect(page).to have_no_content('sed impedit iste')
    expect(page).to have_content('ut ipsum excepturi')
  end
end

Version data entries

12 entries across 12 versions & 2 rubygems

Version Path
wice_grid-6.1.3 spec/features/negation_request_spec.rb
wice_grid-6.1.2 spec/features/negation_request_spec.rb
wice_grid-6.1.1 spec/features/negation_request_spec.rb
wice_grid-6.1.0 spec/features/negation_request_spec.rb
pwice_grid-7.0.0 spec/features/negation_request_spec.rb
pwice_grid-6.1.2 spec/features/negation_request_spec.rb
pwice_grid-6.1.1 spec/features/negation_request_spec.rb
pwice_grid-6.1.0 spec/features/negation_request_spec.rb
pwice_grid-5.0.2 spec/features/negation_request_spec.rb
pwice_grid-5.0.1 spec/features/negation_request_spec.rb
pwice_grid-5.0.0 spec/features/negation_request_spec.rb
wice_grid-4.1.0 spec/features/negation_request_spec.rb