aboutsummaryrefslogtreecommitdiff
path: root/tests/model-derivation.scm
blob: 0e9f97b7723d55532ea57cc51a0234ac567d24f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
(define-module (test-model-derivation)
  #:use-module (srfi srfi-64)
  #:use-module (guix-data-service database)
  #:use-module (guix-data-service model derivation))

(test-begin "test-model-derivation")

(with-postgresql-connection
 "test-model-derivation"
 (lambda (conn)
   (check-test-database! conn)

   (test-equal "valid-systems"
     '("aarch64-linux" "armhf-linux" "i586-gnu"
       "i686-linux" "mips64el-linux" "x86_64-linux")
     (valid-systems conn))

   (test-equal "count-derivations"
     '("0")
     (count-derivations conn))))

(test-end)