save generated files

This commit is contained in:
Andrey Kumanyaev 2013-01-20 15:25:45 +04:00 committed by Dmitriy Zaporozhets
parent 9804b7df68
commit cca9935970
11 changed files with 91 additions and 1 deletions

View file

@ -0,0 +1,40 @@
require 'spec_helper'
describe Admin::Teams::MembersController do
describe "GET 'new'" do
it "returns http success" do
get 'new'
response.should be_success
end
end
describe "GET 'create'" do
it "returns http success" do
get 'create'
response.should be_success
end
end
describe "GET 'edit'" do
it "returns http success" do
get 'edit'
response.should be_success
end
end
describe "GET 'update'" do
it "returns http success" do
get 'update'
response.should be_success
end
end
describe "GET 'destroy'" do
it "returns http success" do
get 'destroy'
response.should be_success
end
end
end