-
-
Notifications
You must be signed in to change notification settings - Fork 148
/
Copy pathmigrating-from-simple-check.html
60 lines (60 loc) · 5.72 KB
/
migrating-from-simple-check.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html PUBLIC ""
"">
<html><head><meta charset="UTF-8" /><title>Migrating from simple-check</title><link rel="stylesheet" type="text/css" href="css/default.css" /><link rel="stylesheet" type="text/css" href="css/highlight.css" /><script type="text/javascript" src="js/highlight.min.js"></script><script type="text/javascript" src="js/jquery.min.js"></script><script type="text/javascript" src="js/page_effects.js"></script><script>hljs.initHighlightingOnLoad();</script></head><body><link rel="stylesheet" type="text/css" href="https://storage.googleapis.com/app.klipse.tech/css/codemirror.css" /><div style="visibility: hidden;"><div class="klipse" data-external-libs="https://raw.githubusercontent.com/clojure/test.check/master/src/main/clojure">(ns my.test
(:require [clojure.test.check :as tc :refer [quick-check]]
[clojure.test.check.generators :as gen]
[clojure.test.check.properties :as prop :include-macros true]))</div></div><div id="header"><h2>Generated by <a href="https://github.com/weavejester/codox">Codox</a></h2><h1><a href="index.html"><span class="project-title"><span class="project-name">Test.check</span> <span class="project-version">0.9.1-SNAPSHOT</span></span></a></h1></div><div class="sidebar primary"><h3 class="no-link"><span class="inner">Project</span></h3><ul class="index-link"><li class="depth-1 "><a href="index.html"><div class="inner">Index</div></a></li></ul><h3 class="no-link"><span class="inner">Topics</span></h3><ul><li class="depth-1 "><a href="cheatsheet.html"><div class="inner"><span>test.check cheatsheet</span></div></a></li><li class="depth-1 "><a href="generator-examples.html"><div class="inner"><span>Generator Examples</span></div></a></li><li class="depth-1 "><a href="intro.html"><div class="inner"><span>Introduction to test.check</span></div></a></li><li class="depth-1 current"><a href="migrating-from-simple-check.html"><div class="inner"><span>Migrating from simple-check</span></div></a></li></ul><h3 class="no-link"><span class="inner">Namespaces</span></h3><ul><li class="depth-1"><div class="no-link"><div class="inner"><span class="tree"><span class="top"></span><span class="bottom"></span></span><span>clojure</span></div></div></li><li class="depth-2"><div class="no-link"><div class="inner"><span class="tree"><span class="top"></span><span class="bottom"></span></span><span>test</span></div></div></li><li class="depth-3"><a href="clojure.test.check.html"><div class="inner"><span class="tree"><span class="top"></span><span class="bottom"></span></span><span>check</span></div></a></li><li class="depth-4 branch"><a href="clojure.test.check.clojure-test.html"><div class="inner"><span class="tree"><span class="top"></span><span class="bottom"></span></span><span>clojure-test</span></div></a></li><li class="depth-4 branch"><a href="clojure.test.check.generators.html"><div class="inner"><span class="tree"><span class="top"></span><span class="bottom"></span></span><span>generators</span></div></a></li><li class="depth-4"><a href="clojure.test.check.properties.html"><div class="inner"><span class="tree"><span class="top"></span><span class="bottom"></span></span><span>properties</span></div></a></li></ul></div><div class="document" id="content"><p id="klipse-loader-wrapper">Click <a id="klipse-loader" href="javascript:void(0)">here</a> to make these examples interactive with ClojureScript.</p><div class="doc"><div class="markdown"><h1><a href="#migrating-from-simple-check" name="migrating-from-simple-check"></a>Migrating from simple-check</h1>
<p>In order to migrate from <em>simple-check</em> to <em>test.check</em>, you’ll need to do two things:</p>
<ul>
<li>
<p>Update project.clj</p>
<p>In your <code>project.clj</code> replace <code>[reiddraper/simple-check "0.5.6"]</code> with <code>[org.clojure/test.check "0.6.2"]</code> (note: your version numbers may be different).</p>
</li>
<li>
<p>Update namespace declarations</p>
<p>Update your namespaces: <code>simple-check.core</code> becomes <code>clojure.test.check</code> (note the dropping of ‘core’). For everything else you can simply replace <code>simple-check</code> with <code>clojure.test.check</code>. Let’s make it easy:</p>
<pre><code class="shell">find test -name '*.clj' -print0 | xargs -0 sed -i.bak \
-e 's/simple-check.core/clojure.test.check/' \
-e 's/simple-check/clojure.test.check/'
</code></pre>
<p>Review the updates.</p>
</li>
</ul></div></div></div><script>window.klipse_settings = {
selector: '.klipse,.clojure',
codemirror_options_in: {
lineWrapping: true,
autoCloseBrackets: true
},
codemirror_options_out: {
lineWrapping: true
}
};</script><script>
function klipseLocalStorageEnabled() {
var mod = 'modernizr';
try {
localStorage.setItem(mod, mod);
localStorage.removeItem(mod);
return true;
} catch (e) {
return false;
}
}
function klipseLoad() {
if (klipseLocalStorageEnabled()) { sessionStorage.setItem('klipse', true);}
$('#klipse-loader-wrapper').remove();
var s = document.createElement('script');
s.setAttribute('src','https://storage.googleapis.com/app.klipse.tech/plugin/js/klipse_plugin.js');
document.head.appendChild(s);
}
if(!true) {
klipseLoad();
} else {
if((klipseLocalStorageEnabled() && sessionStorage.getItem('klipse')) || window.location.search.match(/klipse=1/)) {
klipseLoad();
} else {
$('#klipse-loader').click(function(){
klipseLoad();
});
}
}
</script></body></html>