wolf volpi
2011-Sep-12 00:48 UTC
[rspec-users] generate user-readable tests from Rspec tests?
I have been writing manual tests and dabbled in Cucumber. I like that end users can read the Cucumber tests. Is there a way to generate user-readable tests from Rspec tests or Watir tests? Thank you. -- Posted via http://www.ruby-forum.com/.
Sidu Ponnappa
2011-Sep-12 07:37 UTC
[rspec-users] generate user-readable tests from Rspec tests?
You can write your own Formatter[1] if the existing ones don''t work for you. The default RSpec document format is already available[2] - just pass `--format doc` as a param when running the specs. Best, Sidu. http://c42.in http://blog.sidu.in [1] http://cheat.errtheblog.com/s/rspec/ [2] https://github.com/jeffkreeftmeijer/fuubar On 12 September 2011 06:18, wolf volpi <lists at ruby-forum.com> wrote:> I have been writing manual tests and dabbled in Cucumber. I like that > end users can read the Cucumber tests. Is there a way to generate > user-readable tests from Rspec tests or Watir tests? > > Thank you. > > -- > Posted via http://www.ruby-forum.com/. > _______________________________________________ > rspec-users mailing list > rspec-users at rubyforge.org > http://rubyforge.org/mailman/listinfo/rspec-users >-------------- next part -------------- An HTML attachment was scrubbed... URL: <http://rubyforge.org/pipermail/rspec-users/attachments/20110912/bd5baa05/attachment.html>
wolf volpi
2011-Sep-12 23:51 UTC
[rspec-users] generate user-readable tests from Rspec tests?
Sorry my question was not clear. Sidu Ponnappa wrote in post #1021398:> You can write your own Formatter[1] if the existing ones don''t work for > you. > [1] http://cheat.errtheblog.com/s/rspec/I am mostly testing Java web applications (I do not know Rails). Will Formatter[1] work without Rails?> The default RSpec document format is already available[2] - just pass > `--format doc` as a param when running the specs. > [2] https://github.com/jeffkreeftmeijer/fuubarI watched the video and it looks like it just outputs test results. The output should be a test-narrative similar to: Given some context When some event occurs Then I expect some outcome. Then the end users will review the test-narrative before we start development. Is there a tool that can generate a test-narrative from Rspec tests or Watir tests? Thanks Sidu. -- Posted via http://www.ruby-forum.com/.
David Chelimsky
2011-Sep-13 06:14 UTC
[rspec-users] generate user-readable tests from Rspec tests?
On Sep 13, 2011, at 1:51 AM, wolf volpi wrote:> Sorry my question was not clear. > > Sidu Ponnappa wrote in post #1021398: >> You can write your own Formatter[1] if the existing ones don''t work for >> you. >> [1] http://cheat.errtheblog.com/s/rspec/ > I am mostly testing Java web applications (I do not know Rails). Will > Formatter[1] work without Rails? > >> The default RSpec document format is already available[2] - just pass >> `--format doc` as a param when running the specs. >> [2] https://github.com/jeffkreeftmeijer/fuubar > I watched the video and it looks like it just outputs test results. The > output should be a test-narrative similar to: > Given some context > When some event occurs > Then I expect some outcome. > Then the end users will review the test-narrative before we start > development. Is there a tool that can generate a test-narrative from > Rspec tests or Watir tests?See https://www.relishapp.com/rspec/rspec-core/docs/command-line/format-option. Also, you can get a good start by typing `rspec help`. HTH, David
wolf volpi
2011-Sep-13 10:03 UTC
[rspec-users] generate user-readable tests from Rspec tests?
Now I understand better. Goggling "rspec formatter" shows that there are formatters for progress, documentation, and html. This will make more sense after I learn Rspec. Thank you David and Sidu. -- Posted via http://www.ruby-forum.com/.