projects
/
arvados.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge branch '1692-redesign-dashboard'
[arvados.git]
/
services
/
api
/
test
/
functional
/
arvados
/
v1
/
groups_controller_test.rb
1
require 'test_helper'
2
3
class Arvados::V1::GroupsControllerTest < ActionController::TestCase
4
5
test "attempt to delete group without write access" do
6
authorize_with :active
7
post :destroy, id: groups(:public).uuid
8
assert_response 403
9
end
10
11
end