Reputation: 21
I am running the the rspec case and I want to print some objects on the terminal while running rspec.how to this.thanks in advance
I am using old version of rails and running by this command script/spec spec/
Upvotes: 1
Views: 546
Reputation: 11920
You should just be able to put puts
calls in your specs. There is no reason why this would not work
Upvotes: 3