5069682d8e
- Ignore JS fixtures - Ignore qa directory - Rewrite concern specs to put concern name first
11 lines
302 B
Ruby
11 lines
302 B
Ruby
require "spec_helper"
|
|
|
|
describe "notifications routing" do
|
|
it "routes to #show" do
|
|
expect(get("/profile/notifications")).to route_to("profiles/notifications#show")
|
|
end
|
|
|
|
it "routes to #update" do
|
|
expect(put("/profile/notifications")).to route_to("profiles/notifications#update")
|
|
end
|
|
end
|