Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Avatar for KuCalc : devops.
Download
50664 views
1
###
2
TESTING of user queries specifically involving projects
3
4
COPYRIGHT : (c) 2017 SageMath, Inc.
5
LICENSE : AGPLv3
6
###
7
8
pgtest = require('./pgtest')
9
db = undefined
10
setup = (cb) -> (pgtest.setup (err) -> db=pgtest.db; cb(err))
11
teardown = pgtest.teardown
12
13
{create_accounts, create_projects} = pgtest
14
15
async = require('async')
16
expect = require('expect')
17
18
misc = require('smc-util/misc')
19
20
describe 'extensive tests of editing properties of a project', ->
21
22
23
24