gitlabhq/spec/controllers/teams/members_controller_spec.rb
Andrey Kumanyaev c5f427b0a4 save commit
2013-01-24 22:31:24 +02:00

48 lines
829 B
Ruby

require 'spec_helper'
describe Teams::MembersController do
describe "GET 'index'" do
it "returns http success" do
get 'index'
response.should be_success
end
end
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