Sha256: fedcf2980149fc7883dcf961570c7922ed95f0a3cf38588da4932e7e4c447d2f
Contents?: true
Size: 1.75 KB
Versions: 19
Compression:
Stored size: 1.75 KB
Contents
require 'spec_helper' describe "Tax Categories", type: :feature do stub_authorization! before(:each) do visit spree.admin_path click_link "Configuration" end context "admin visiting tax categories list" do it "should display the existing tax categories" do create(:tax_category, name: "Clothing", tax_code: "CL001", description: "For Clothing") click_link "Tax Categories" within("h1") { expect(page).to have_content("Tax Categories") } within_row(1) do expect(column_text(1)).to eq("Clothing") expect(column_text(2)).to eq("CL001") expect(column_text(3)).to eq("For Clothing") expect(column_text(4)).to eq("No") end end end context "admin creating new tax category" do before(:each) do click_link "Tax Categories" click_link "admin_new_tax_categories_link" end it "should be able to create new tax category" do expect(page).to have_content("New Tax Category") fill_in "tax_category_name", with: "sports goods" fill_in "tax_category_description", with: "sports goods desc" click_button "Create" expect(page).to have_content("successfully created!") end it "should show validation errors if there are any" do click_button "Create" expect(page).to have_content("Name can't be blank") end end context "admin editing a tax category" do it "should be able to update an existing tax category", js: true do create(:tax_category) click_link "Tax Categories" within_row(1) { click_icon :edit } fill_in "tax_category_description", with: "desc 99" click_button "Update" expect(page).to have_content("successfully updated!") expect(page).to have_content("desc 99") end end end
Version data entries
19 entries across 19 versions & 1 rubygems