This repository has been archived on 2024-03-16. You can view files and clone it, but cannot push or open issues or pull requests.
orbit-4-1/spec/controllers/design_controller_spec.rb

48 lines
821 B
Ruby

require 'spec_helper'
describe DesignController do
describe "GET 'index'" do
it "should be successful" do
get 'index'
response.should be_success
end
end
describe "GET 'new'" do
it "should be successful" do
get 'new'
response.should be_success
end
end
describe "GET 'update'" do
it "should be successful" do
get 'update'
response.should be_success
end
end
describe "GET 'edit'" do
it "should be successful" do
get 'edit'
response.should be_success
end
end
describe "GET 'destroy'" do
it "should be successful" do
get 'destroy'
response.should be_success
end
end
describe "GET 'create'" do
it "should be successful" do
get 'create'
response.should be_success
end
end
end