Sha256: 66ccf2c8fc4ca3dc7f7b87fb00eb492290d402e6326c6f4f84f874b7a8e868b2
Contents?: true
Size: 1.87 KB
Versions: 6
Compression:
Stored size: 1.87 KB
Contents
require 'spec_helper' describe "Product Variants", type: :feature do stub_authorization! before(:each) do visit spree.admin_path end context "editing variant option types", js: true do let!(:product) { create(:product) } it "should allow an admin to create option types for a variant" do click_nav "Products" within_row(1) { click_icon :edit } within('nav > ul.tabs') { click_link "Variants" } expect(page).to have_content("TO ADD VARIANTS, YOU MUST FIRST DEFINE") end it "allows admin to create a variant if there are option types" do click_nav "Products" click_link "Option Types" click_link "new_option_type_link" fill_in "option_type_name", with: "shirt colors" fill_in "option_type_presentation", with: "colors" click_button "Create" expect(page).to have_content("successfully created!") page.find('#option_type_option_values_attributes_0_name').set('color') page.find('#option_type_option_values_attributes_0_presentation').set('black') click_button "Update" expect(page).to have_content("successfully updated!") visit spree.admin_path click_nav "Products" within('table.index tbody tr:nth-child(1)') do click_icon :edit end select2_search "shirt", from: "Option Types" click_button "Update" expect(page).to have_content("successfully updated!") within('nav > ul.tabs') { click_link "Variants" } click_link "New Variant" targetted_select2 "black", from: "#s2id_variant_option_value_ids" fill_in "variant_sku", with: "A100" click_button "Create" expect(page).to have_content("successfully created!") within(".index") do expect(page).to have_content("19.99") expect(page).to have_content("black") expect(page).to have_content("A100") end end end end
Version data entries
6 entries across 6 versions & 1 rubygems