mirror of
https://github.com/internetee/registry.git
synced 2025-05-17 17:59:47 +02:00
37 lines
852 B
Ruby
37 lines
852 B
Ruby
require 'rails_helper'
|
|
|
|
RSpec.feature 'New price in admin area', settings: false do
|
|
given!(:zone) { create(:zone, origin: 'test') }
|
|
|
|
background do
|
|
sign_in_to_admin_area
|
|
end
|
|
|
|
scenario 'it creates new price' do
|
|
open_list
|
|
open_form
|
|
fill_form
|
|
submit_form
|
|
|
|
expect(page).to have_text(t('admin.billing.prices.create.created'))
|
|
end
|
|
|
|
def open_list
|
|
click_link_or_button t('admin.base.menu.prices')
|
|
end
|
|
|
|
def open_form
|
|
click_link_or_button t('admin.billing.prices.index.new_btn')
|
|
end
|
|
|
|
def fill_form
|
|
select 'test', from: 'price_zone_id'
|
|
select Billing::Price.operation_categories.first, from: 'price_operation_category'
|
|
select '3 months', from: 'price_duration'
|
|
fill_in 'price_price', with: '1'
|
|
end
|
|
|
|
def submit_form
|
|
click_link_or_button t('admin.billing.prices.form.create_btn')
|
|
end
|
|
end
|