mirror of
https://gitlab.com/wheres-the-tp/server.git
synced 2026-01-25 04:24:56 -06:00
rename aretherecookies-server to aretherecookies
This commit is contained in:
parent
67b61ba65a
commit
a4142988f7
4 changed files with 6 additions and 6 deletions
|
|
@ -1,4 +1,4 @@
|
|||
# aretherecookies-server
|
||||
# aretherecookies
|
||||
|
||||
the server that knows where the cookies are
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
(defproject aretherecookies-server "0.1.0-SNAPSHOT"
|
||||
(defproject aretherecookies "0.1.0-SNAPSHOT"
|
||||
:description "FIXME: write description"
|
||||
:url "http://example.com/FIXME"
|
||||
:min-lein-version "2.0.0"
|
||||
|
|
@ -11,7 +11,7 @@
|
|||
[ring-middleware-format "0.7.2"]
|
||||
[org.clojure/data.json "0.2.6"]]
|
||||
:plugins [[lein-ring "0.9.7"]]
|
||||
:ring {:handler aretherecookies-server.handler/app}
|
||||
:ring {:handler aretherecookies.handler/app}
|
||||
:profiles
|
||||
{:dev {:dependencies [[javax.servlet/servlet-api "2.5"]
|
||||
[ring/ring-mock "0.3.0"]]}})
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
(ns aretherecookies-server.handler
|
||||
(ns aretherecookies.handler
|
||||
(:require [compojure.core :refer :all]
|
||||
[compojure.route :as route]
|
||||
[ring.middleware.defaults :refer [wrap-defaults site-defaults]]
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
(ns aretherecookies-server.handler-test
|
||||
(ns aretherecookies.handler-test
|
||||
(:require [clojure.test :refer :all]
|
||||
[ring.mock.request :as mock]
|
||||
[aretherecookies-server.handler :refer :all]))
|
||||
[aretherecookies.handler :refer :all]))
|
||||
|
||||
(deftest test-app
|
||||
(testing "main route"
|
||||
Loading…
Add table
Reference in a new issue