Sha256: d703e17ed668fee8644b2742e11d94e11b962056b72c2523717f1008483214ba

Contents?: true

Size: 417 Bytes

Versions: 1

Compression:

Stored size: 417 Bytes

Contents

require 'test_helper'

module Redshop
  class CartsControllerTest < ActionController::TestCase
    setup do
      @routes = Engine.routes
    end

    test "should get show" do
      get :show
      assert_response :success
    end

    test "should get add" do
      get :add
      assert_response :success
    end

    test "should get remove" do
      get :remove
      assert_response :success
    end

  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
redshop-0.0.1 test/controllers/redshop/carts_controller_test.rb