The Dojo Toolkit used to come with a testing facility called "Doh". It was in the /utils directory.
Now when you download dojo-release-1.3.2 the /utils directory is nowhere to be found.
Is Doh dead and gone?
The Dojo Toolkit used to come with a testing facility called "Doh". It was in the /utils directory.
Now when you download dojo-release-1.3.2 the /utils directory is nowhere to be found.
Is Doh dead and gone?
I don t think it s dead and gone, I m using it right now to develop code against dojo 1.3.2 and it s working fine. If you can find it in an older release (as long as it s not too old), you should still be able to use it.
Edit
You can find it here in the source...
Dojo is packaged two different ways for download and unfortunately it s not terribly clear what these are. One is a "source" (src) package with all of the unoptimized sources and all of the tools to optimize them, along with tests. This tends to be quite large. The plain "release" package is the result of running the build tools against Dojo to produce an optimized set of files. Because they are not needed to run Dojo and to keep the download size small, tests and tools like DOH are not included.
DOH is actually not dependent on Dojo and should probably be packaged as a separate product.
What do software engineers encounter after another stressfull release? Well, the first thing we encounter in our group are the bugs we have released out in the open. The biggest problem that we as ...
I have some funny noob problem. I try to run unit tests from commandline: H:PROpyEstimator>python src estpython est_power_estimator.py Traceback (most recent call last): File "src est...
I´m working on a huge project at my work. We have about 200 database tables, accordingly a huge number of Models, Actions and so on. How should I begin to write tests for this? My biggest problem ...
Just wondering what people are using for code coverage tools when using MS Visual Studio 2008 Pro. We are using the built-in MS test project and unit testing tool (the one that come pre-installed ...
Say you have this shell of a class: public class Number { private int value; public Number() : this(0) {} public Number(int initialValue) : this(initialValue, 0, 100) {} ...
I have a C++ legacy codebase with 10-15 applications, all sharing several components. While setting up unittests for both shared components and for applications themselves, I was wondering if there ...
There s a bug/feature in Visual Studio 2010 where you can t create a unit test project with the 2.0 CLR. https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=483891&wa=...
Is there a simple (Attribute-driven) way to have the following test fail on the message of the exception. [TestMethod()] [ExpectedException(typeof(ArgumentException))] public void ExceptionTestTest() ...