aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/meta/location.lux
blob: 2aaa797a0ceb4d61dabec42360a0fd34043b7b94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
(.module:
  [library
   [lux #*
    ["_" test (#+ Test)]
    [abstract
     [monad (#+ do)]
     [\\spec
      ["$." equivalence]]]
    [data
     ["." text]]
    [math
     ["." random (#+ Random)]]]]
  [\\library
   ["." /]]
  ["$." /// #_
   [macro
    ["#." code]]])

(def: #export random
  (Random Location)
  ($_ random.and
      (random.ascii/alpha 10)
      random.nat
      random.nat
      ))

(def: #export test
  Test
  (<| (_.covering /._)
      (_.for [.Location])
      ($_ _.and
          (_.for [/.equivalence]
                 ($equivalence.spec /.equivalence ..random))

          (_.cover [/.here]
                   (not (\ /.equivalence = (/.here) (/.here))))
          (do random.monad
            [location ..random
             error (random.ascii/alpha 10)]
            (_.cover [/.format /.with]
                     (let [located_error (/.with location error)]
                       (and (text.contains? (/.format location)
                                            located_error)
                            (text.contains? error
                                            located_error)))))
          (do random.monad
            [[location _] $///code.random]
            (_.cover [/.dummy]
                     (\ /.equivalence = /.dummy location)))
          )))