forked from OpenNeo/impress
20 lines
314 B
Ruby
20 lines
314 B
Ruby
|
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
|