Sha256: dbb1c20389d0e6b3edf2460fb06762cf1d65eaebf17d9fc79f58fafc2ef2fa05

Contents?: true

Size: 1.73 KB

Versions: 6

Compression:

Stored size: 1.73 KB

Contents

require 'spec_helper'

describe "Tax Categories", type: :feature do
  stub_authorization!

  before(:each) do
    visit spree.admin_path
    click_link "Taxes"
  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"
      expect(page).to have_content("Listing 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" 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

6 entries across 6 versions & 1 rubygems

Version Path
solidus_backend-1.3.2 spec/features/admin/configuration/tax_categories_spec.rb
solidus_backend-1.3.1 spec/features/admin/configuration/tax_categories_spec.rb
solidus_backend-1.3.0 spec/features/admin/configuration/tax_categories_spec.rb
solidus_backend-1.3.0.rc2 spec/features/admin/configuration/tax_categories_spec.rb
solidus_backend-1.3.0.rc1 spec/features/admin/configuration/tax_categories_spec.rb
solidus_backend-1.3.0.beta1 spec/features/admin/configuration/tax_categories_spec.rb