Sha256: 65676a5007db7d8b4a462e62a71e46dc8d3bbda2f2719b1643712b54363fb29b
Contents?: true
Size: 1.88 KB
Versions: 7
Compression:
Stored size: 1.88 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('#sidebar') { 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('#sidebar') { 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
7 entries across 7 versions & 1 rubygems