diff --git a/doc/README_FOR_APP b/doc/README_FOR_APP deleted file mode 100644 index fe41f5cc24..0000000000 --- a/doc/README_FOR_APP +++ /dev/null @@ -1,2 +0,0 @@ -Use this README file to introduce your application and point to useful places in the API for learning more. -Run "rake doc:app" to generate API documentation for your models, controllers, helpers, and libraries. diff --git a/doc/img/spree_upgrade_branches.jpg b/doc/img/spree_upgrade_branches.jpg deleted file mode 100755 index f633de8c49..0000000000 Binary files a/doc/img/spree_upgrade_branches.jpg and /dev/null differ diff --git a/doc/img/spree_upgrade_epics.jpg b/doc/img/spree_upgrade_epics.jpg deleted file mode 100755 index 38096c0bdd..0000000000 Binary files a/doc/img/spree_upgrade_epics.jpg and /dev/null differ diff --git a/doc/outstanding_shopping_tests b/doc/outstanding_shopping_tests deleted file mode 100644 index 4bfcc0c2aa..0000000000 --- a/doc/outstanding_shopping_tests +++ /dev/null @@ -1,43 +0,0 @@ - - -Checkout: - it "displays correct distribution charges on checkout" - it "sends a confirmation email on successful checkout" - it "copies the addresses from a previous order" (controller test) - -Cart: - it "displays correct distribution charges on the cart" - -Shop: - it "shows nothing when there is no future order cycle" - scenario "order cycle expires mid-order" (see below) - - it "does not allow the user to add a product from a distributor that cannot supply the cart's products" - - -scenario "order cycle expires mid-order" do - d = create(:distributor_enterprise, - name: 'Green Grass', email: 'd@example.com', phone: '1029 3847') - create_enterprise_group_for d - p = create(:simple_product) - oc = create(:simple_order_cycle, name: 'oc', distributors: [d], variants: [p.master]) - - # When I select an order cycle and add a product to my cart - visit spree.root_path - click_link 'Green Grass' - visit enterprise_path d - click_link p.name - click_button 'Add To Cart' - - # And the order cycle expires and I load a page - Timecop.travel(oc.orders_close_at + 1.day) do - - visit enterprise_path d - - # Then I should see an expiry message - page.should have_content "Sorry, orders for this order cycle closed 1 day ago! Please contact your hub directly to see if they can accept late orders." - page.should have_content d.email - page.should have_content d.phone - end -end -