TDD with Test class first?
I just read the article on Test first development referenced from the blog post,
http://blog.jetbrains.com/pycharm/2013/07/testing-your-python-code-with-pycharm/
I really miss Visual Studio and Resharper here in Python land!
The instructions do not create the test class first, but rather first create the class under test. Are there plans for adding helper refactorings to work in that order? I am pretty new at all this so it's very possible I missed something.
thank you!
http://blog.jetbrains.com/pycharm/2013/07/testing-your-python-code-with-pycharm/
I really miss Visual Studio and Resharper here in Python land!
The instructions do not create the test class first, but rather first create the class under test. Are there plans for adding helper refactorings to work in that order? I am pretty new at all this so it's very possible I missed something.
thank you!
请先登录再写评论。
what I see is an orange lightbulb, and it allows me to create a parameter. For example, just say ;
print unknownthing
It does also say unknown reference, as expected.
Thus my gui does not match the picture here;
http://www.jetbrains.com/pycharm/quickstart/django_guide.html
class Test_AnArgParse(unittest.TestCase):
def test_sayKwargs_1Pair_rtns_2(self):
ans2 = AThing.two() ## This does Not offer Create Class
the 'Create class' action will be available if the first letter is uppercase and the second one is lowercase. I've created a bug report in our tracker to improve this behavior. Please, feel free to vote it and get notified once it's fixed.