<feed xmlns='http://www.w3.org/2005/Atom'>
<title>leap_web.git/test, branch 0.5.1-rc</title>
<subtitle>[leap_web] 
</subtitle>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_web.git/'/>
<entry>
<title>add a try/except for older versions of requests</title>
<updated>2014-04-17T08:39:59+00:00</updated>
<author>
<name>Azul</name>
<email>azul@leap.se</email>
</author>
<published>2014-04-17T08:04:12+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_web.git/commit/?id=d639e0a48599b30777b80c2809ded1efb3a6d926'/>
<id>d639e0a48599b30777b80c2809ded1efb3a6d926</id>
<content type='text'>
they have response.json as a dict instead of response.json()
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
they have response.json as a dict instead of response.json()
</pre>
</div>
</content>
</entry>
<entry>
<title>nagios test: also test registering new users</title>
<updated>2014-04-17T08:39:59+00:00</updated>
<author>
<name>Azul</name>
<email>azul@leap.se</email>
</author>
<published>2014-04-16T10:37:03+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_web.git/commit/?id=36e99d8b23263cffcd58988c40ca3217349a94f2'/>
<id>36e99d8b23263cffcd58988c40ca3217349a94f2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>nagios test: use support classes in soledad sync</title>
<updated>2014-04-17T08:39:59+00:00</updated>
<author>
<name>Azul</name>
<email>azul@leap.se</email>
</author>
<published>2014-04-16T09:26:13+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_web.git/commit/?id=8907100f3ffe99a2a9110c90418c9e5844b4ab03'/>
<id>8907100f3ffe99a2a9110c90418c9e5844b4ab03</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>remove unneeded imports</title>
<updated>2014-04-17T08:39:59+00:00</updated>
<author>
<name>Azul</name>
<email>azul@leap.se</email>
</author>
<published>2014-04-16T09:16:00+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_web.git/commit/?id=bfda2c55bd4824d94d384a39960c91b6e1f8d14b'/>
<id>bfda2c55bd4824d94d384a39960c91b6e1f8d14b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>move support classes into their own package</title>
<updated>2014-04-17T08:39:59+00:00</updated>
<author>
<name>Azul</name>
<email>azul@leap.se</email>
</author>
<published>2014-04-16T09:14:55+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_web.git/commit/?id=0f0057e65c6bfcb98ce53e1a48aa1460d3a6716a'/>
<id>0f0057e65c6bfcb98ce53e1a48aa1460d3a6716a</id>
<content type='text'>
now the webapp_login test looks nice and clean. soledad next.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
now the webapp_login test looks nice and clean. soledad next.
</pre>
</div>
</content>
</entry>
<entry>
<title>nagios test: refactor webapp_login with classes</title>
<updated>2014-04-17T08:39:59+00:00</updated>
<author>
<name>Azul</name>
<email>azul@leap.se</email>
</author>
<published>2014-04-16T08:13:28+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_web.git/commit/?id=73bdb9a9ea8932e9a14f996391d348690da1a63c'/>
<id>73bdb9a9ea8932e9a14f996391d348690da1a63c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>refactor: move nagios specifs to nagios_test</title>
<updated>2014-04-17T08:39:59+00:00</updated>
<author>
<name>Azul</name>
<email>azul@leap.se</email>
</author>
<published>2014-04-15T15:17:36+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_web.git/commit/?id=be2971c2e615cc8a808822317d049e99f5183bdc'/>
<id>be2971c2e615cc8a808822317d049e99f5183bdc</id>
<content type='text'>
nagios_test.run takes a function and executes it.
If it returns nothing or 0 and OK nagios message is printed.
If it returns sth. else this will be printed a a warning
If it raises an exception that will result in a CRITICAL report.

This way we can keep the nagios things outside the test cases and just write simple functions that either return 0, a warnign or raise a meaningful exception
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
nagios_test.run takes a function and executes it.
If it returns nothing or 0 and OK nagios message is printed.
If it returns sth. else this will be printed a a warning
If it raises an exception that will result in a CRITICAL report.

This way we can keep the nagios things outside the test cases and just write simple functions that either return 0, a warnign or raise a meaningful exception
</pre>
</div>
</content>
</entry>
<entry>
<title>refactor reporting in webapp login nagios test</title>
<updated>2014-04-17T08:39:59+00:00</updated>
<author>
<name>Azul</name>
<email>azul@leap.se</email>
</author>
<published>2014-04-15T10:51:06+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_web.git/commit/?id=44d2d031555c889b94e9738cb45740b16a4071ce'/>
<id>44d2d031555c889b94e9738cb45740b16a4071ce</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>refactor nagios tests, remove parse</title>
<updated>2014-04-17T08:39:59+00:00</updated>
<author>
<name>Azul</name>
<email>azul@leap.se</email>
</author>
<published>2014-04-15T07:47:07+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_web.git/commit/?id=a14f66c2642ff43c2cc497b0597bfb17d19a7139'/>
<id>a14f66c2642ff43c2cc497b0597bfb17d19a7139</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>move include AssertResponses into test itself</title>
<updated>2014-04-11T08:35:41+00:00</updated>
<author>
<name>Azul</name>
<email>azul@leap.se</email>
</author>
<published>2014-04-11T08:35:41+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_web.git/commit/?id=63010ddb7cf4ef124376d8a6f35b6de35c99d175'/>
<id>63010ddb7cf4ef124376d8a6f35b6de35c99d175</id>
<content type='text'>
it may not have been required before the RackTest support class.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
it may not have been required before the RackTest support class.
</pre>
</div>
</content>
</entry>
</feed>
