Files
growstuff/spec/requests/notifications_spec.rb
2013-02-15 23:48:30 +11:00

13 lines
310 B
Ruby

require 'spec_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