0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-03-31 09:01:20 -05:00

📎 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
(defn- run-tests
([] (run-tests #"^app-tests.test-.*$"))
([] (run-tests #"^backend-tests.test-.*$"))
([o]
(repl/refresh)
(cond

View file

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

View file

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

View file

Before

Width:  |  Height:  |  Size: 305 KiB

After

Width:  |  Height:  |  Size: 305 KiB

View file

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 3.5 KiB

View file

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 2.1 KiB

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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