File tree Expand file tree Collapse file tree 3 files changed +29
-3
lines changed
Expand file tree Collapse file tree 3 files changed +29
-3
lines changed Original file line number Diff line number Diff line change 1+ # Changelog
2+
3+ ## 0.3.0
4+
5+ - Public release.
Original file line number Diff line number Diff line change @@ -22,7 +22,23 @@ Clojure 1.7.0 and/or ClojureScript 1.7.28 or higher.
2222Add this to your dependencies in project.clj:
2323
2424``` clj
25- [clj-fakes " 0.3.0-SNAPSHOT" ]
25+ [clj-fakes " 0.3.0" ]
26+ ```
27+
28+ Require framework namespace in your unit test source file:
29+
30+ ``` clj
31+ ; Clojure
32+ (ns unit.example
33+ (:require
34+ ; ...
35+ [clj-fakes.core :as f]))
36+
37+ ; ClojureScript
38+ (ns unit.example
39+ (:require
40+ ; ...
41+ [clj-fakes.core :as f :include-macros true ]))
2642```
2743
2844## Examples
@@ -76,7 +92,12 @@ Add this to your dependencies in project.clj:
7692```
7793
7894## Documentation
79- More documentation can be found at [ the project site] ( http://metametadata.github.io/clj-fakes/ ) .
95+ More documentation can be found at [ the project site] ( http://metametadata.github.io/clj-fakes/ ) :
96+
97+ * [ Quickstart] ( http://metametadata.github.io/clj-fakes/quickstart/ )
98+ * [ User Guide] ( http://metametadata.github.io/clj-fakes/user-guide/ )
99+ * [ API Reference] ( http://metametadata.github.io/clj-fakes/api/ )
100+ * [ Developer Guide] ( http://metametadata.github.io/clj-fakes/dev-guide/ )
80101
81102## License
82103Copyright © 2015 Yuri Govorushchenko.
Original file line number Diff line number Diff line change 1- (defproject clj-fakes " 0.3.0-SNAPSHOT "
1+ (defproject clj-fakes " 0.3.0"
22 :description " An isolation framework for Clojure/ClojureScript. It makes creating mocks and stubs for unit testing much easier."
33 :url " https://github.com/metametadata/clj-fakes"
44 :license {:name " MIT" :url " http://opensource.org/licenses/MIT" }
You can’t perform that action at this time.
0 commit comments