📎 Rename app-tests to backend-tests for naming consistency

This commit is contained in:
Andrey Antukh 2022-11-07 17:38:06 +01:00 committed by Andrés Moya
parent 0dc3dba428
commit 12e2d3ad96
25 changed files with 31 additions and 31 deletions

View file

@ -63,7 +63,7 @@
;; --- Development Stuff ;; --- Development Stuff
(defn- run-tests (defn- run-tests
([] (run-tests #"^app-tests.test-.*$")) ([] (run-tests #"^backend-tests.test-.*$"))
([o] ([o]
(repl/refresh) (repl/refresh)
(cond (cond

View file

@ -4,9 +4,9 @@
;; ;;
;; Copyright (c) KALEIDOS INC ;; Copyright (c) KALEIDOS INC
(ns app-tests.test-bounce-handling (ns backend-tests.test-bounce-handling
(:require (:require
[app-tests.test-helpers :as th] [backend-tests.test-helpers :as th]
[app.db :as db] [app.db :as db]
[app.emails :as emails] [app.emails :as emails]
[app.http.awsns :as awsns] [app.http.awsns :as awsns]

View file

@ -4,9 +4,9 @@
;; ;;
;; Copyright (c) KALEIDOS INC ;; Copyright (c) KALEIDOS INC
(ns app-tests.test-email-sending (ns backend-tests.test-email-sending
(:require (:require
[app-tests.test-helpers :as th] [backend-tests.test-helpers :as th]
[app.db :as db] [app.db :as db]
[app.emails :as emails] [app.emails :as emails]
[clojure.test :as t] [clojure.test :as t]

View file

Before

Width:  |  Height:  |  Size: 305 KiB

After

Width:  |  Height:  |  Size: 305 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 3.5 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 2.1 KiB

Before After
Before After

View file

@ -4,7 +4,7 @@
;; ;;
;; Copyright (c) KALEIDOS INC ;; Copyright (c) KALEIDOS INC
(ns app-tests.test-helpers (ns backend-tests.test-helpers
(:require (:require
[app.common.data :as d] [app.common.data :as d]
[app.common.flags :as flags] [app.common.flags :as flags]

View file

@ -4,9 +4,9 @@
;; ;;
;; Copyright (c) KALEIDOS INC ;; Copyright (c) KALEIDOS INC
(ns app-tests.test-rpc-file (ns backend-tests.test-rpc-file
(:require (:require
[app-tests.test-helpers :as th] [backend-tests.test-helpers :as th]
[app.common.uuid :as uuid] [app.common.uuid :as uuid]
[app.db :as db] [app.db :as db]
[app.db.sql :as sql] [app.db.sql :as sql]

View file

@ -4,9 +4,9 @@
;; ;;
;; Copyright (c) KALEIDOS INC ;; Copyright (c) KALEIDOS INC
(ns app-tests.test-rpc-font (ns backend-tests.test-rpc-font
(:require (:require
[app-tests.test-helpers :as th] [backend-tests.test-helpers :as th]
[app.common.uuid :as uuid] [app.common.uuid :as uuid]
[app.db :as db] [app.db :as db]
[app.http :as http] [app.http :as http]

View file

@ -4,10 +4,10 @@
;; ;;
;; Copyright (c) KALEIDOS INC ;; Copyright (c) KALEIDOS INC
(ns app-tests.test-rpc-management (ns backend-tests.test-rpc-management
(:require (:require
[app-tests.test-storage :refer [configure-storage-backend]] [backend-tests.test-storage :refer [configure-storage-backend]]
[app-tests.test-helpers :as th] [backend-tests.test-helpers :as th]
[app.common.uuid :as uuid] [app.common.uuid :as uuid]
[app.db :as db] [app.db :as db]
[app.http :as http] [app.http :as http]

View file

@ -4,9 +4,9 @@
;; ;;
;; Copyright (c) KALEIDOS INC ;; Copyright (c) KALEIDOS INC
(ns app-tests.test-rpc-media (ns backend-tests.test-rpc-media
(:require (:require
[app-tests.test-helpers :as th] [backend-tests.test-helpers :as th]
[app.common.uuid :as uuid] [app.common.uuid :as uuid]
[app.db :as db] [app.db :as db]
[app.storage :as sto] [app.storage :as sto]

View file

@ -4,9 +4,9 @@
;; ;;
;; Copyright (c) KALEIDOS INC ;; Copyright (c) KALEIDOS INC
(ns app-tests.test-rpc-profile (ns backend-tests.test-rpc-profile
(:require (:require
[app-tests.test-helpers :as th] [backend-tests.test-helpers :as th]
[app.common.uuid :as uuid] [app.common.uuid :as uuid]
[app.config :as cf] [app.config :as cf]
[app.db :as db] [app.db :as db]

View file

@ -4,9 +4,9 @@
;; ;;
;; Copyright (c) KALEIDOS INC ;; Copyright (c) KALEIDOS INC
(ns app-tests.test-rpc-project (ns backend-tests.test-rpc-project
(:require (:require
[app-tests.test-helpers :as th] [backend-tests.test-helpers :as th]
[app.common.uuid :as uuid] [app.common.uuid :as uuid]
[app.db :as db] [app.db :as db]
[app.http :as http] [app.http :as http]

View file

@ -4,9 +4,9 @@
;; ;;
;; Copyright (c) KALEIDOS INC ;; Copyright (c) KALEIDOS INC
(ns app-tests.test-rpc-team (ns backend-tests.test-rpc-team
(:require (:require
[app-tests.test-helpers :as th] [backend-tests.test-helpers :as th]
[app.common.uuid :as uuid] [app.common.uuid :as uuid]
[app.db :as db] [app.db :as db]
[app.http :as http] [app.http :as http]

View file

@ -4,9 +4,9 @@
;; ;;
;; Copyright (c) KALEIDOS INC ;; Copyright (c) KALEIDOS INC
(ns app-tests.test-rpc-viewer (ns backend-tests.test-rpc-viewer
(:require (:require
[app-tests.test-helpers :as th] [backend-tests.test-helpers :as th]
[app.common.uuid :as uuid] [app.common.uuid :as uuid]
[app.db :as db] [app.db :as db]
[clojure.test :as t] [clojure.test :as t]

View file

@ -4,9 +4,9 @@
;; ;;
;; Copyright (c) KALEIDOS INC ;; Copyright (c) KALEIDOS INC
(ns app-tests.test-storage (ns backend-tests.test-storage
(:require (:require
[app-tests.test-helpers :as th] [backend-tests.test-helpers :as th]
[app.common.exceptions :as ex] [app.common.exceptions :as ex]
[app.common.uuid :as uuid] [app.common.uuid :as uuid]
[app.db :as db] [app.db :as db]

View file

@ -4,9 +4,9 @@
;; ;;
;; Copyright (c) KALEIDOS INC ;; Copyright (c) KALEIDOS INC
(ns app-tests.test-telemetry-task (ns backend-tests.test-telemetry-task
(:require (:require
[app-tests.test-helpers :as th] [backend-tests.test-helpers :as th]
[app.db :as db] [app.db :as db]
[app.emails :as emails] [app.emails :as emails]
[app.util.time :as dt] [app.util.time :as dt]

View file

@ -4,9 +4,9 @@
;; ;;
;; Copyright (c) KALEIDOS INC ;; Copyright (c) KALEIDOS INC
(ns app-tests.test-util-objects-map (ns backend-tests.test-util-objects-map
(:require (:require
[app-tests.test-helpers :as th] [backend-tests.test-helpers :as th]
[app.common.spec :as us] [app.common.spec :as us]
[app.common.transit :as transit] [app.common.transit :as transit]
[app.common.types.shape :as cts] [app.common.types.shape :as cts]

View file

@ -4,9 +4,9 @@
;; ;;
;; Copyright (c) KALEIDOS INC ;; Copyright (c) KALEIDOS INC
(ns app-tests.test-util-pointer-map (ns backend-tests.test-util-pointer-map
(:require (:require
[app-tests.test-helpers :as th] [backend-tests.test-helpers :as th]
[app.common.spec :as us] [app.common.spec :as us]
[app.common.transit :as transit] [app.common.transit :as transit]
[app.common.types.shape :as cts] [app.common.types.shape :as cts]