impress/spec/controllers/closet_lists_controller_spec.rb

20 lines
314 B
Ruby
Raw Normal View History

require 'spec_helper'
describe ClosetListsController do
describe "GET 'new'" do
it "should be successful" do
get 'new'
response.should be_success
end
end
describe "GET 'create'" do
it "should be successful" do
get 'create'
response.should be_success
end
end
end