mirror of
https://github.com/internetee/registry.git
synced 2025-05-17 09:57:23 +02:00
33 lines
868 B
Ruby
33 lines
868 B
Ruby
require 'rails_helper'
|
|
|
|
RSpec.feature 'Viewing prices in admin area', settings: false do
|
|
given!(:effective_price) { create(:effective_price) }
|
|
given!(:expired_price) { create(:expired_price) }
|
|
|
|
background do
|
|
sign_in_to_admin_area
|
|
end
|
|
|
|
describe 'search' do
|
|
context 'when status is not selected' do
|
|
scenario 'shows effective prices' do
|
|
visit admin_prices_path
|
|
expect(page).to have_css('.price', count: 1)
|
|
end
|
|
end
|
|
|
|
context 'when status is given' do
|
|
scenario 'filters by given status' do
|
|
visit admin_prices_path
|
|
select Admin::Billing::PricesController.default_status.capitalize, from: 'search_status'
|
|
submit_search_form
|
|
|
|
expect(page).to have_css('.price', count: 1)
|
|
end
|
|
end
|
|
|
|
def submit_search_form
|
|
find('.price-search-form-search-btn').click
|
|
end
|
|
end
|
|
end
|