Search Results

1
vote
3answers
88 views

What is the community-preferred Ruby unit testing framework?

In the Java space, JUnit is predominately used and in .NET I believe nUnit is very popular. Is a community agreed upon unit testing framework for the Ruby world? Background: I ask because …
-1
votes

Python’s unittest logic

The setUp method, as everyone else has said, runs before every test method you write. So, when testB runs, the value of i is 1, not 3. You can also use a tearDown method which runs after ev …