<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Case Conductor</title>
	<atom:link href="http://caseconductor.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://caseconductor.wordpress.com</link>
	<description>A Test Case Management System by Mozilla and uTest</description>
	<lastBuildDate>Sat, 25 Feb 2012 19:45:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='caseconductor.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Case Conductor</title>
		<link>http://caseconductor.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://caseconductor.wordpress.com/osd.xml" title="Case Conductor" />
	<atom:link rel='hub' href='http://caseconductor.wordpress.com/?pushpress=hub'/>
		<item>
		<title>0.8.X Branch now available</title>
		<link>http://caseconductor.wordpress.com/2012/02/25/0-8-x-branch-now-available/</link>
		<comments>http://caseconductor.wordpress.com/2012/02/25/0-8-x-branch-now-available/#comments</comments>
		<pubDate>Sat, 25 Feb 2012 19:45:55 +0000</pubDate>
		<dc:creator>cheshirecam</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://caseconductor.wordpress.com/?p=45</guid>
		<description><![CDATA[We are working our way toward our 1.0 release slated for 3/30.  And this is a major milestone for us. This new branch reflects an architectural change we decided to make last November.  We have moved the project to be purely Django.  This has simplified everything from deploying the product to developing new features and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=caseconductor.wordpress.com&amp;blog=28819938&amp;post=45&amp;subd=caseconductor&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>We are working our way toward our 1.0 release slated for 3/30.  And this is a major milestone for us.</p>
<p>This new branch reflects an architectural change we decided to make last November.  We have moved the project to be purely Django.  This has simplified everything from deploying the product to developing new features and we&#8217;re really excited about it.</p>
<p>Along with the architectural change, we have added a bunch of improvements &#8220;while we&#8217;re at it.&#8221;  For a complete list, look in the &#8220;Done&#8221; section of our <a title="Case Conductor Tracker Project" href="https://www.pivotaltracker.com/projects/280483#" target="_blank">Pivotal Tracker</a> page.  But to name a few:</p>
<ul>
<li>Re-work of the UI to make it cleaner and clearer</li>
<li>Lists are now default ordered by creation date to make it easier to find your new items</li>
<li>Test Cycles are now Product Versions (I&#8217;ll blog on this in a later post)</li>
<li>Test Case versions are now directly mapped to the Product Version to make it clearer just what a Test Case version means.</li>
<li>You can now create a test case with no steps, if you like</li>
<li><a title="Case Conductor Documentation" href="readthedocs.org/docs/case-conductor/en/latest/index.html" target="_blank">Documentation</a>! (as mentioned here in last blog post)</li>
<li>Soft-deletes as well as Cascading deletes.  If you decide that you don&#8217;t want an old project (or anything else) in the system any longer, you can delete it and all the Versions, Cases, and Suites go with it.  If you deleted it by mistake, you can undelete it in the Admin.  Speaking of the Admin&#8230;</li>
<li>Django Admin!  Now that we are pure Django, you can access the admin by the URL: &lt;yourdomain&gt;/admin/.  Not surprisingly, only users with admin privileges can use it.  <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </li>
</ul>
<h2><strong>Upgrading from 0.7.X<br />
</strong></h2>
<p>If you have been using the 0.7.X branch version of Case Conductor, one thing that may be obvious is that the move to pure Django means a big shift in the database schema.  This was a fairly unavoidable change to bring the schema into the Django best-practices and conventions.  So installation of 0.8.X will need to be a new installation, with a new database.  And then you&#8217;ll need to migrate your 0.7.X data.</p>
<p>Here&#8217;s how:</p>
<ol>
<li>Upgrade your existing installation to the 0.7.1 branch.  This will add a new management command to extract suites and cases for your existing data:
<pre>cd &lt;your github repo&gt;
git pull
git checkout 0.7.1</pre>
</li>
<li>For each product you want to migrate, extract the suites and cases to a .json file:
<pre>./manage.py export_cases "My Product" &gt; myproduct_tests.json</pre>
</li>
<li>The 0.8.X data structure is different enough that you will need to recreate your Products, Product Versions, Environments and Users in the new UI.</li>
<li>Import your &#8220;myproduct_tests.json&#8221; file into the new 0.8.X branch.  The command is called &#8220;import&#8221; and the parameters are &lt;product&gt; &lt;prouct version&gt; &lt;file.json&gt;:
<pre>./manage.py import "My Product" 1.0 myproduct_tests.json</pre>
</li>
</ol>
<p>If you run into any problems with your upgrade, please either comment here, or come visit us on irc at irc.mozilla.org #caseconductor.</p>
<p>Thanks,</p>
<p>-Cam</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/caseconductor.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/caseconductor.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/caseconductor.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/caseconductor.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/caseconductor.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/caseconductor.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/caseconductor.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/caseconductor.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/caseconductor.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/caseconductor.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/caseconductor.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/caseconductor.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/caseconductor.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/caseconductor.wordpress.com/45/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=caseconductor.wordpress.com&amp;blog=28819938&amp;post=45&amp;subd=caseconductor&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://caseconductor.wordpress.com/2012/02/25/0-8-x-branch-now-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bad9f7001c13b0ec2afa4676d3b185fc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">cheshirecam</media:title>
		</media:content>
	</item>
		<item>
		<title>I guess we could document it&#8230;</title>
		<link>http://caseconductor.wordpress.com/2012/02/03/i-guess-we-could-document-it/</link>
		<comments>http://caseconductor.wordpress.com/2012/02/03/i-guess-we-could-document-it/#comments</comments>
		<pubDate>Fri, 03 Feb 2012 23:30:36 +0000</pubDate>
		<dc:creator>cheshirecam</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://caseconductor.wordpress.com/?p=35</guid>
		<description><![CDATA[In the process of developing Case Conductor, we have to make a lot of design decisions.  We are using Pivotal Tracker to manage our user stories, and that&#8217;s been working great.  Often, when we have chats about how to implement a story, we note the decisionright there in the story itself.  This is fine for [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=caseconductor.wordpress.com&amp;blog=28819938&amp;post=35&amp;subd=caseconductor&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://caseconductor.files.wordpress.com/2012/02/126x126.png"><img class="alignleft size-full wp-image-36" title="126x126" src="http://caseconductor.files.wordpress.com/2012/02/126x126.png?w=497" alt="Case Conductor"   /></a>In the process of developing Case Conductor, we have to make a lot of design decisions.  We are using Pivotal Tracker to manage our user stories, and that&#8217;s been working great.  Often, when we have chats about how to implement a story, we note the decisionright there in the story itself.  This is fine for us, but not very good for the future users of our product.</p>
<p>One day after having one such discussion, Carl Meyer, (our lead developer) decided that perhaps these design decisions would be best preserved in documentation.  What a concept!</p>
<p>There is a great little site out there for hosting documentation called Read The Docs.  Setup is incredibly simple.  Just follow the instructions here: <a title="readthedocs.org" href="http://readthedocs.org/docs/read-the-docs/en/latest/getting_started.html">readthedocs.org</a>.  When you tell it your repo location (github, mercurial, subversion or bazaar), any time you check in new docs, they are automatically built to the site and you&#8217;re done.</p>
<p>So, over the weekend, Carl followed the above instructions to get setup for RTD.  Then he gathered a bunch of our design decisions, composed them in reStructuredText format and checked them into our repo on <a href="https://github.com/mozilla/caseconductor">github</a>.  Awesome.</p>
<p>You can find our current Case Conductor docs here: <a title="Case Conductor Docs" href="http://readthedocs.org/docs/case-conductor/en/latest/">Case Conductor</a>.  It&#8217;s not complete, but it&#8217;s a work in progress and it reflects the decisions we&#8217;ve been making on how things work in Case Conductor.  So, now as we have these discussions and make decisions, we immortalize them in the documentation.  It&#8217;s so easy to write them in this format, that it becomes just as easy to take notes right in the docs as it would in Evernote or a Tracker story.</p>
<p>Sphinx and reStructureText are used as the formats for the documentation.  This ends up being a very simple combination. Even reference links are easy to define.</p>
<p>For example:</p>
<blockquote><p>Test Cases and Suites<br />
=====================</p>
<p>.. _test-cases:</p>
<p>Test Cases<br />
&#8212;&#8212;&#8212;-</p>
<p>A **Test Case** is a named set of steps for testing a single feature or<br />
characteristic of the system under test. Test cases are associated with a<br />
:ref:`product &lt;products&gt;`, and can have one version per :ref:`product<br />
version&lt;product-versions&gt;`. They can be organized via :ref:`suites<br />
&lt;test-suites&gt;` and/or :ref:`tags&lt;tags&gt;`, and can have file<br />
:ref:`attachments&lt;attachments&gt;`. Preconditions, assumptions, and other<br />
preliminary information can be provided in the case&#8217;s *description*. A test<br />
case can have any number of steps; each step has an *instruction* and an<br />
*expected result*.</p></blockquote>
<p>Becomes:</p>
<p><a href="http://caseconductor.files.wordpress.com/2012/02/screen-shot-2012-02-03-at-3-16-09-pm1.png"><img class="alignnone size-full wp-image-38" title="Doc example" src="http://caseconductor.files.wordpress.com/2012/02/screen-shot-2012-02-03-at-3-16-09-pm1.png?w=497&#038;h=218" alt="Doc example" width="497" height="218" /></a></p>
<p>While some editors support formatting reST documents, we have actually found it easiest to just build the docs and view them in Firefox.</p>
<blockquote><p>make html</p></blockquote>
<p>That&#8217;s all it takes, and you can view your docs locally in all their grandeur.</p>
<p>One of the other things I really like about this approach rather than a traditional Wiki is that your docs are with your code.  You don&#8217;t have to go to 2 different places and use an online text editor to update what you&#8217;ve done.  You can use TextMate, or Emacs, or whatever your editor of choice is, and check in the doc changes with the code changes.  Simple.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/caseconductor.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/caseconductor.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/caseconductor.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/caseconductor.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/caseconductor.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/caseconductor.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/caseconductor.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/caseconductor.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/caseconductor.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/caseconductor.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/caseconductor.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/caseconductor.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/caseconductor.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/caseconductor.wordpress.com/35/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=caseconductor.wordpress.com&amp;blog=28819938&amp;post=35&amp;subd=caseconductor&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://caseconductor.wordpress.com/2012/02/03/i-guess-we-could-document-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bad9f7001c13b0ec2afa4676d3b185fc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">cheshirecam</media:title>
		</media:content>

		<media:content url="http://caseconductor.files.wordpress.com/2012/02/126x126.png" medium="image">
			<media:title type="html">126x126</media:title>
		</media:content>

		<media:content url="http://caseconductor.files.wordpress.com/2012/02/screen-shot-2012-02-03-at-3-16-09-pm1.png" medium="image">
			<media:title type="html">Doc example</media:title>
		</media:content>
	</item>
		<item>
		<title>Case Conductor 0.7.X branch now available</title>
		<link>http://caseconductor.wordpress.com/2011/11/14/case-conductor-0-7-x-branch-now-available/</link>
		<comments>http://caseconductor.wordpress.com/2011/11/14/case-conductor-0-7-x-branch-now-available/#comments</comments>
		<pubDate>Mon, 14 Nov 2011 21:59:08 +0000</pubDate>
		<dc:creator>cheshirecam</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://caseconductor.wordpress.com/?p=32</guid>
		<description><![CDATA[Just wanted to let you know we just posted our latest branch last week: 0.7.X. This branch has lots of new fixes in it. And this is the build we are going to be working with in-house through the end of the year. You can see a list of the &#8220;done&#8221; items on our Pivotal [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=caseconductor.wordpress.com&amp;blog=28819938&amp;post=32&amp;subd=caseconductor&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Just wanted to let you know we just posted our latest branch last week: <a title="0.7.X" href="https://github.com/mozilla/caseconductor-ui/tree/0.7.X">0.7.X</a>.</p>
<p>This branch has lots of new fixes in it. And this is the build we are going to be working with in-house through the end of the year.</p>
<p>You can see a list of the &#8220;done&#8221; items on our Pivotal Tracker page here: <a title="https://www.pivotaltracker.com/projects/280483" href="https://www.pivotaltracker.com/projects/280483" target="_blank">https://www.pivotaltracker.com/projects/280483</a></p>
<p>But a couple items worth noting are:</p>
<ul>
<li>You can now filter test cases by tags and author</li>
<li>% complete for Test Runs is now accurate.  We removed it for Test Cycles because, in hind sight, I realized that Cycles are going to continue to grow over their life.  So % complete just doesn&#8217;t really work well for them.</li>
<li>You can now use filtering when creating an Environment Profile</li>
<li>Several other bug fixes</li>
</ul>
<p><strong>Going forward</strong></p>
<p>We have decided to make a big architectural change.  We are going to take the remainder of 2011 and convert the whole application to pure Django.  This shouldn&#8217;t affect very much of the UI, but will make it lots easier to implement new features, and make the architecture easier to understand and work on in the open-source community.  Not to mention, this will make it easier to setup and run the application itself.</p>
<p>We&#8217;ll keep you posted on our progress on this front.  Please post a comment here or on <a title="http://groups.google.com/group/case-conductor" href="http://groups.google.com/group/case-conductor" target="_blank">http://groups.google.com/group/case-conductor</a></p>
<p>Thanks, Cam</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/caseconductor.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/caseconductor.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/caseconductor.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/caseconductor.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/caseconductor.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/caseconductor.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/caseconductor.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/caseconductor.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/caseconductor.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/caseconductor.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/caseconductor.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/caseconductor.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/caseconductor.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/caseconductor.wordpress.com/32/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=caseconductor.wordpress.com&amp;blog=28819938&amp;post=32&amp;subd=caseconductor&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://caseconductor.wordpress.com/2011/11/14/case-conductor-0-7-x-branch-now-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bad9f7001c13b0ec2afa4676d3b185fc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">cheshirecam</media:title>
		</media:content>
	</item>
		<item>
		<title>New Case Conductor branch available: 0.6.X</title>
		<link>http://caseconductor.wordpress.com/2011/11/04/new-case-conductor-branch-available-0-6-x/</link>
		<comments>http://caseconductor.wordpress.com/2011/11/04/new-case-conductor-branch-available-0-6-x/#comments</comments>
		<pubDate>Fri, 04 Nov 2011 18:10:03 +0000</pubDate>
		<dc:creator>cheshirecam</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://caseconductor.wordpress.com/?p=13</guid>
		<description><![CDATA[We&#8217;ve been plugging along, making fixes and rounding out functionality on Case Conductor.  We&#8217;re getting very close to a version that we will begin rolling out for usage in-house here at Mozilla. We&#8217;re going to start using it on a couple small projects when we get to branch 0.7.X. To check out our latest updates, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=caseconductor.wordpress.com&amp;blog=28819938&amp;post=13&amp;subd=caseconductor&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve been plugging along, making fixes and rounding out functionality on Case Conductor.  We&#8217;re getting very close to a version that we will begin rolling out for usage in-house here at Mozilla.  We&#8217;re going to start using it on a couple small projects when we get to branch 0.7.X.</p>
<p>To check out our latest updates, please checkout this latest branch: 0.6.X.  We&#8217;ll continue updating it to fix bugs as we go, of course.</p>
<p>If you don&#8217;t have the repo yet, you can get it with this command:</p>
<pre>git clone git://github.com/mozilla/caseconductor-ui.git</pre>
<p>If you already have the repo cloned, you can get this branch by typing this from within your repo:</p>
<pre>git checkout -b 0.6.X origin/0.6.X</pre>
<p>Have fun, and let me know how it goes!</p>
<p>-Cam</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/caseconductor.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/caseconductor.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/caseconductor.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/caseconductor.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/caseconductor.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/caseconductor.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/caseconductor.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/caseconductor.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/caseconductor.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/caseconductor.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/caseconductor.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/caseconductor.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/caseconductor.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/caseconductor.wordpress.com/13/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=caseconductor.wordpress.com&amp;blog=28819938&amp;post=13&amp;subd=caseconductor&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://caseconductor.wordpress.com/2011/11/04/new-case-conductor-branch-available-0-6-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bad9f7001c13b0ec2afa4676d3b185fc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">cheshirecam</media:title>
		</media:content>
	</item>
		<item>
		<title>Case Conductor Early Beta</title>
		<link>http://caseconductor.wordpress.com/2011/10/27/case-conductor-early-beta/</link>
		<comments>http://caseconductor.wordpress.com/2011/10/27/case-conductor-early-beta/#comments</comments>
		<pubDate>Fri, 28 Oct 2011 01:04:09 +0000</pubDate>
		<dc:creator>cheshirecam</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://caseconductor.wordpress.com/?p=4</guid>
		<description><![CDATA[Hi, I&#8217;m Cameron, the project manager on the Case Conductor project.  We are a small, agile team trying to make a test case management system that is cool, useful, free and open source. You may have seen some announcements about Case Conductor from uTest: http://www.marketwire.com/press-release/utest-and-mozilla-launch-beta-of-caseconductor-for-test-case-management-1577217.htm http://blog.utest.com/utest-and-mozilla-release-beta-version-of-caseconductor/2011/10/ While Case Conductor is an early beta and still [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=caseconductor.wordpress.com&amp;blog=28819938&amp;post=4&amp;subd=caseconductor&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hi, I&#8217;m Cameron, the project manager on the Case Conductor project.  We are a small, agile team trying to make a test case management system that is cool, useful, free and open source.</p>
<p>You may have seen some announcements about Case Conductor from uTest:</p>
<ul>
<li><a title="http://www.marketwire.com/press-release/utest-and-mozilla-launch-beta-of-caseconductor-for-test-case-management-1577217.htm" href="http://www.marketwire.com/press-release/utest-and-mozilla-launch-beta-of-caseconductor-for-test-case-management-1577217.htm">http://www.marketwire.com/press-release/utest-and-mozilla-launch-beta-of-caseconductor-for-test-case-management-1577217.htm</a></li>
<li><a title="http://blog.utest.com/utest-and-mozilla-release-beta-version-of-caseconductor/2011/10/" href="http://blog.utest.com/utest-and-mozilla-release-beta-version-of-caseconductor/2011/10/">http://blog.utest.com/utest-and-mozilla-release-beta-version-of-caseconductor/2011/10/</a></li>
</ul>
<p>While Case Conductor is an early beta and still rough around the edges, we&#8217;d love your feedback on a few of the features we&#8217;re working on:</p>
<ol>
<li>Test case entry: we support both single and bulk test case entry.  Our bulk entry form takes a Gherkin-ish style of language (other formats to come).  Testers like to write tests in many different styles.  A form works great for many people.  Others prefer something more free-form.  Our goal here was to allow you to create lots of test cases in the text editor of your choice being able to cut-copy-paste to your heart&#8217;s content..  Then when you&#8217;re ready, you just enter them in bulk.  For now we only have one syntax we accept, but your input on more syntax styles (like Markdown) would help.</li>
<li>Filtering: when you&#8217;ve entered things like test cases, test runs, test cycles, etc, you can find what you&#8217;re looking for on specific pages by using our filtering.  See how you like it and let us know.</li>
<li>Managing environments: A testing compatibility matrix can be hard to keep track of.  And they can get HUGE.  These days, it sometimes just isn&#8217;t possible to test EVERY possible combination.  We have added the ability to provide all your environment parameters for your product, then you can pick and choose the ones you ACTUALLY want to test.  Narrowing this down allows your testers to focus on what are your core concerns.</li>
</ol>
<p>We are really excited about the direction of the product and what it does (and will) have to offer.  Test case management systems have been too cumbersome in the past.  We want to change that.  In the coming weeks, we&#8217;ll continue to evolve the product.  I encourage you to play with it and give us feedback on what you like and what you don&#8217;t.</p>
<p><strong>How do I get it?</strong></p>
<p>You can fetch what you need from github here:  <a title="https://github.com/mozilla/caseconductor-ui/tree/0.5.X" href="https://github.com/mozilla/caseconductor-ui/tree/0.5.X">https://github.com/mozilla/caseconductor-ui/tree/0.5.X</a>.  You&#8217;ll notice this is the 0.5.X branch. Feel free to check out the master branch, but there will be several features in partial completeness. This repo includes a pre-built version of the platform in &#8220;tcm.war&#8221; which is ready to be dropped into your JBoss installation.</p>
<p>The two README.rst files should give you all the info you need.  There are two separate parts, each with their own readme:</p>
<ul>
<li>Platform: <a title="https://github.com/mozilla/caseconductor-ui/tree/0.5.X/platform" href="https://github.com/mozilla/caseconductor-ui/tree/0.5.X/platform">https://github.com/mozilla/caseconductor-ui/tree/0.5.X/platform</a></li>
<li>Django UI: <a title="https://github.com/mozilla/caseconductor-ui/tree/0.5.X" href="https://github.com/mozilla/caseconductor-ui/tree/0.5.X">https://github.com/mozilla/caseconductor-ui/tree/0.5.X</a></li>
</ul>
<p><strong><strong>We&#8217;d love to hear your feedback!</strong></strong></p>
<p>Please feel free to post comments to this blog, and/or enter bugs and feature requests in Bugzilla with<a title="Enter Case Conductor Bug" href="https://bugzilla.mozilla.org/enter_bug.cgi?assigned_to=nobody%40mozilla.org&amp;blocked=&amp;bug_file_loc=http%3A%2F%2F&amp;bug_status=NEW&amp;component=TCM&amp;form_name=enter_bug&amp;&amp;product=Mozilla%20QA&amp;qa_contact=tcm%40mozilla-qa.bugs"> this link.</a></p>
<p>Thanks for your interest.  Talk to you soon.</p>
<p>-Cam</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/caseconductor.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/caseconductor.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/caseconductor.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/caseconductor.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/caseconductor.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/caseconductor.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/caseconductor.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/caseconductor.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/caseconductor.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/caseconductor.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/caseconductor.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/caseconductor.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/caseconductor.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/caseconductor.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=caseconductor.wordpress.com&amp;blog=28819938&amp;post=4&amp;subd=caseconductor&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://caseconductor.wordpress.com/2011/10/27/case-conductor-early-beta/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bad9f7001c13b0ec2afa4676d3b185fc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">cheshirecam</media:title>
		</media:content>
	</item>
	</channel>
</rss>
