11 lines
202 B
Ruby
11 lines
202 B
Ruby
require "spec_helper"
|
|
|
|
describe SupplierController, type: :routing do
|
|
describe "routing" do
|
|
|
|
it "routes root to #home" do
|
|
get("/supplier").should route_to("supplier#home")
|
|
end
|
|
end
|
|
end
|