fix(config): ensure AnonymousUserToken is set
[arvados-formula.git] / test / integration / keepstore / controls / config_spec.rb
index d44e6737b1be25537b67cc8de3712502d09b74fc..7113e2b21e6de5ad953fd94b279fea7543302f20 100644 (file)
@@ -1,5 +1,10 @@
 # frozen_string_literal: true
 
+users_stanza = <<-USERS_STANZA
+    Users:
+      AnonymousUserToken: anonymoususertokensetintheusersdict
+USERS_STANZA
+
 keepstore_stanza = <<-KEEPSTORE_STANZA
       Keepstore:
         InternalURLs:
@@ -33,5 +38,6 @@ control 'arvados configuration' do
     end
     its('content') { should include(keepstore_stanza) }
     its('content') { should include(volumes_stanza) }
+    its('content') { should include(users_stanza) }
   end
 end