mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-03-24 01:32:40 -04:00
13 lines
311 B
Ruby
13 lines
311 B
Ruby
require 'rails_helper'
|
|
|
|
describe "Notifications" do
|
|
describe "GET /notifications" do
|
|
it "works! (now write some real specs)" do
|
|
get notifications_path
|
|
# can't see notifications because not logged in
|
|
# therefore redirect to homepage
|
|
response.status.should be(302)
|
|
end
|
|
end
|
|
end
|