top | item 36064377

(no title)

byby | 2 years ago

I've been writing them for over 20. Doesn't matter. What matters is factual correctness.

See here what a unit test is versus integration test: https://www.testim.io/blog/unit-test-vs-integration-test/

And also see my reply to the other guy where I definitively show that not only is what chatgpt produced correct, but better:

https://news.ycombinator.com/item?id=36064097

discuss

order

wizofaus|2 years ago

I'm perfectly aware of what the difference is, thank you. The function you gave to ChatGPT explicitly requests a stream to format integers as decimals, separated by newlines. The version it gave as being 'unit-testable' did not, and hence wasn't a 'factually correct' answer. In some cases that may be perfectly fine, but in others it most definitely isn't.

byby|2 years ago

This is the function I gave chatGPT:

   ME:
   def (x: int):
      for i in range(x):
         print(i)
It takes an int. Are you trolling now or did you get mixed up with something else?