mirror of
https://github.com/correl/calrissian.git
synced 2024-11-23 19:19:57 +00:00
Update deps to use new lfe libraries
This commit is contained in:
parent
9f12d3edf8
commit
32ab46feb1
5 changed files with 15 additions and 11 deletions
|
@ -10,7 +10,7 @@
|
||||||
"src"]}
|
"src"]}
|
||||||
]}.
|
]}.
|
||||||
{deps, [
|
{deps, [
|
||||||
{lfe, ".*", {git, "git://github.com/rvirding/lfe.git", "develop"}},
|
{lfe, ".*", {git, "git://github.com/rvirding/lfe.git", {tag, "v0.9.1"}}},
|
||||||
{'lfe-utils', ".*", {git, "https://github.com/lfe/lfe-utils.git", "master"}},
|
{lutil, ".*", {git, "https://github.com/lfex/lutil.git", {tag, "0.6.2"}}},
|
||||||
{lfeunit, ".*", {git, "git://github.com/lfe/lfeunit.git", "master"}}
|
{ltest, ".*", {git, "git://github.com/lfex/ltest.git", {tag, "0.6.0"}}}
|
||||||
]}.
|
]}.
|
||||||
|
|
|
@ -1,11 +1,12 @@
|
||||||
(defmodule unit-calrissian-error-monad-tests
|
(defmodule unit-calrissian-error-monad-tests
|
||||||
|
(behaviour ltest-unit)
|
||||||
(export all)
|
(export all)
|
||||||
(import
|
(import
|
||||||
(from lfeunit-util
|
(from ltest
|
||||||
(check-failed-assert 2)
|
(check-failed-assert 2)
|
||||||
(check-wrong-assert-exception 2))))
|
(check-wrong-assert-exception 2))))
|
||||||
|
|
||||||
(include-lib "deps/lfeunit/include/lfeunit-macros.lfe")
|
(include-lib "deps/ltest/include/ltest-macros.lfe")
|
||||||
(include-lib "include/monads.lfe")
|
(include-lib "include/monads.lfe")
|
||||||
(include-lib "include/monad-tests.lfe")
|
(include-lib "include/monad-tests.lfe")
|
||||||
|
|
|
@ -1,11 +1,12 @@
|
||||||
(defmodule unit-calrissian-identity-monad-tests
|
(defmodule unit-calrissian-identity-monad-tests
|
||||||
|
(behaviour ltest-unit)
|
||||||
(export all)
|
(export all)
|
||||||
(import
|
(import
|
||||||
(from lfeunit-util
|
(from ltest
|
||||||
(check-failed-assert 2)
|
(check-failed-assert 2)
|
||||||
(check-wrong-assert-exception 2))))
|
(check-wrong-assert-exception 2))))
|
||||||
|
|
||||||
(include-lib "deps/lfeunit/include/lfeunit-macros.lfe")
|
(include-lib "deps/ltest/include/ltest-macros.lfe")
|
||||||
(include-lib "include/monads.lfe")
|
(include-lib "include/monads.lfe")
|
||||||
(include-lib "include/monad-tests.lfe")
|
(include-lib "include/monad-tests.lfe")
|
||||||
|
|
|
@ -1,11 +1,12 @@
|
||||||
(defmodule unit-calrissian-maybe-monad-tests
|
(defmodule unit-calrissian-maybe-monad-tests
|
||||||
|
(behaviour ltest-unit)
|
||||||
(export all)
|
(export all)
|
||||||
(import
|
(import
|
||||||
(from lfeunit-util
|
(from ltest
|
||||||
(check-failed-assert 2)
|
(check-failed-assert 2)
|
||||||
(check-wrong-assert-exception 2))))
|
(check-wrong-assert-exception 2))))
|
||||||
|
|
||||||
(include-lib "deps/lfeunit/include/lfeunit-macros.lfe")
|
(include-lib "deps/ltest/include/ltest-macros.lfe")
|
||||||
(include-lib "include/monads.lfe")
|
(include-lib "include/monads.lfe")
|
||||||
(include-lib "include/monad-tests.lfe")
|
(include-lib "include/monad-tests.lfe")
|
||||||
|
|
|
@ -1,11 +1,12 @@
|
||||||
(defmodule unit-calrissian-state-transformer-tests
|
(defmodule unit-calrissian-state-transformer-tests
|
||||||
|
(behaviour ltest-unit)
|
||||||
(export all)
|
(export all)
|
||||||
(import
|
(import
|
||||||
(from lfeunit-util
|
(from ltest
|
||||||
(check-failed-assert 2)
|
(check-failed-assert 2)
|
||||||
(check-wrong-assert-exception 2))))
|
(check-wrong-assert-exception 2))))
|
||||||
|
|
||||||
(include-lib "deps/lfeunit/include/lfeunit-macros.lfe")
|
(include-lib "deps/ltest/include/ltest-macros.lfe")
|
||||||
(include-lib "include/monads.lfe")
|
(include-lib "include/monads.lfe")
|
||||||
(include-lib "include/monad-tests.lfe")
|
(include-lib "include/monad-tests.lfe")
|
||||||
|
|
Loading…
Reference in a new issue