vegantech/sims

View on GitHub
pending-spec/routing-pending/news_items_routing_spec.rb

Summary

Maintainability
B
6 hrs
Test Coverage
require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')

describe NewsItemsController do
  describe "route generation" do
    it "should map #index" do
      route_for(:controller => "news_items", :action => "index").should == "/news_items"
    end
  
    it "should map #new" do
      route_for(:controller => "news_items", :action => "new").should == "/news_items/new"
    end
  
    it "should map #show" do
      route_for(:controller => "news_items", :action => "show", :id => "1").should == "/news_items/1"
    end
  
    it "should map #edit" do
      route_for(:controller => "news_items", :action => "edit", :id => "1").should == "/news_items/1/edit"
    end
  
    it "should map #update" do
      route_for(:controller => "news_items", :action => "update", :id => "1").should == {:path => '/news_items/1', :method => :put}
    end
  
    it "should map #destroy" do
      route_for(:controller => "news_items", :action => "destroy", :id => "1").should == {:path => "/news_items/1", :method => :delete}
    end
  end

  describe "route recognition" do
    it "should generate params for #index" do
      params_from(:get, "/news_items").should == {:controller => "news_items", :action => "index"}
    end
  
    it "should generate params for #new" do
      params_from(:get, "/news_items/new").should == {:controller => "news_items", :action => "new"}
    end
  
    it "should generate params for #create" do
      params_from(:post, "/news_items").should == {:controller => "news_items", :action => "create"}
    end
  
    it "should generate params for #show" do
      params_from(:get, "/news_items/1").should == {:controller => "news_items", :action => "show", :id => "1"}
    end
  
    it "should generate params for #edit" do
      params_from(:get, "/news_items/1/edit").should == {:controller => "news_items", :action => "edit", :id => "1"}
    end
  
    it "should generate params for #update" do
      params_from(:put, "/news_items/1").should == {:controller => "news_items", :action => "update", :id => "1"}
    end
  
    it "should generate params for #destroy" do
      params_from(:delete, "/news_items/1").should == {:controller => "news_items", :action => "destroy", :id => "1"}
    end
  end
end