Skip to content
This repository has been archived by the owner on Oct 30, 2023. It is now read-only.

Commit

Permalink
Fix errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
wmealing committed Oct 28, 2023
1 parent 554f8b5 commit 271a018
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 7 additions & 5 deletions rebar.config
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
{erl_opts, [debug_info]}.

{erl_opts, [{src_dirs, ["src", "test"]}]}.
{deps, [
{lfe, "2.1.2"},
{ltest, "0.13.5"},
{barista, "0.3.4"}
{ltest, "0.13.5"},
{barista, "0.3.4"},
{proper, "1.4.0"}
]}.

{plugins, [
{rebar3_lfe, "0.4.8"}
{rebar3_lfe, "0.4.8"},
{rebar3_proper, "0.12.1"}
]}.

{lfe, [
Expand Down
4 changes: 1 addition & 3 deletions test/untitled_project-tests.lfe
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,8 @@
;;; library API
;;; -----------

;; wow, testing has its OWN priv directory, which isnt being populated.
(deftest code-privdir-is-sane ()
(is-equal "/Users/wmealing/Projects/UntitledProject/_build/test/lib/untitled_project/priv"
(: code priv_dir "untitled_project")))
(is-not (>= 4 (string:length (: code priv_dir "untitled_project")))))


;; how exactly would i test
Expand Down

0 comments on commit 271a018

Please sign in to comment.