Sha256: e485ee2ea9b1ca32e33744dccd432c19ded45bc1e2abc2c692c3ac5292ab5360

Contents?: true

Size: 1.13 KB

Versions: 5

Compression:

Stored size: 1.13 KB

Contents

# FIXME: These specs are broken
# Fix when you have a minute
#
# require "spec_helper"
# 
# describe PostsController do
#   
#   describe "routing" do
#     
#     before do
#       # Use blogit's routes instead
#       @routes = Blogit::Engine.routes
#     end
#     
#     it "routes /posts/page/:page to posts#index with page param" do
#       { get: "posts/page/2" }.should route_to({
#         controller: "blogit/posts",
#         action: "index",
#         page: "2"
#       })
#     end
#     
#     it "routes /posts/tagged/:tag to posts#tagged with tag param" do
#       { get: "posts/tagged/Spiceworld" }.should route_to({
#         controller: "blogit/posts",
#         action: "tagged",
#         tag: "Spiceworld"
#       })      
#     end
# 
# 
#     describe "when Blogit.configuration.include_admin_actions is true" do
# 
#       before do
#         Blogit.configuration.include_admin_actions = true
#       end
#       
#     end
# 
#     describe "when Blogit.configuration.include_admin_actions is false" do
# 
#       before do
#         Blogit.configuration.include_admin_actions = false 
#       end
# 
#     end
# 
#   end
# end

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
blogit-admin-0.0.1 spec/routing/post_routing_spec.rb
blogit-1.0.0.rc1 spec/routing/post_routing_spec.rb
blogit-0.8.0 spec/routing/post_routing_spec.rb
blogit-0.7.0 spec/routing/post_routing_spec.rb
blogit-0.6.0 spec/routing/post_routing_spec.rb