summaryrefslogtreecommitdiff
path: root/spec/routing/categories_routing_spec.rb
blob: 97920736202d91fa79a6e559f316325ceef4fd2c (plain)
1
2
3
4
5
6
7
8
9
10
11
require "rails_helper"

describe '/categories' do
  it "routes to #show" do
    expect(get: "/categories/fondant").to route_to(category: "fondant", controller: "cakes", action: "index")
  end

  it '/categories/cookies/page/2' do
    expect(get: "/categories/fondant/page/2").to route_to(category: "fondant", controller: "cakes", action: "index", page: '2')
  end
end