about summary refs log tree commit diff
path: root/test/pronouns/util_test.clj
blob: 3aecc2a6236362077af3099bd10d8d894513fc0a (plain) (blame)
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
(ns pronouns.util-test
  (:require [pronouns.util :as util]
            [clojure.test :refer [deftest testing is are]]))

(def test-table [["ze" "hir" "hir" "hirs" "hirself"]
                 ["ze" "zir" "zir" "zirs" "zirself"]
                 ["she" "her" "her" "hers" "herself"]
                 ["he" "him" "his" "his" "himself"]
                 ["they" "them" "their" "theirs" "themselves"]
                 ["they" "them" "their" "theirs" "themself"]])

(deftest table-filters
  (testing "table-front-filter"
    (are [arg return] (= (util/table-front-filter arg test-table) return)
      ["she"] [["she" "her" "her" "hers" "herself"]]
      ["ze"] [["ze" "hir" "hir" "hirs" "hirself"]
              ["ze" "zir" "zir" "zirs" "zirself"]]
      ["ze" "zir"] [["ze" "zir" "zir" "zirs" "zirself"]]))

  (testing "table-end-filter"
    (are [arg return] (= (util/table-end-filter arg test-table) return)
      ["themself"] [["they" "them" "their" "theirs" "themself"]]
      ["themselves"] [["they" "them" "their" "theirs" "themselves"]])))

(deftest table-lookup
  (are [arg return] (= (util/table-lookup arg test-table) return)
    ["she"] ["she" "her" "her" "hers" "herself"]
    ["ze"] ["ze" "hir" "hir" "hirs" "hirself"]
    ["ze" "zir"] ["ze" "zir" "zir" "zirs" "zirself"]
    ["they"] ["they" "them" "their" "theirs" "themselves"]
    ["they" "..." "themself"] ["they" "them" "their" "theirs" "themself"]))