01:23
aslakhellesoy joined
01:56
aslakhellesoy joined
03:04
aslakhellesoy joined
03:20
<robholland>
morning
06:24
aslakhellesoy joined
12:28
aslakhellesoy joined
12:31
aslakhellesoy joined
12:32
<owen1>
i want to verify 'edit post' page shows the correct info of the post being edited. which option is better:
12:32
<owen1>
1. Given there is a post with the title "Why We Code" Then I should see "Why We Code" post attributes in the form field
12:35
<owen1>
1. Given there is a post with the title "Why We Code" the author "loren" the body "hello world" Then I should see "Why We Code" within "#title" And I should see "loren" within "athor" And I should see....etc
12:35
<owen1>
sorry the second line is #2
12:35
<owen1>
so #1 is shorter in the feature file but encapsulate more stuff in the step file.
12:36
<owen1>
#2 is more verbose in the feauture file and i don't need anything in step file since i'll use the regular webrat steps.
15:23
ashley_moran joined
15:58
<cesarstafe>
I want to save the cucumber tests in html format
15:58
<cesarstafe>
which could be the better place in disk?
15:59
<cesarstafe>
inside the application root path? in another position in my hard disk or there is a better option to do that?
16:01
<cesar`>
I want to save the cucumber tests in html format. which could be the better place in disk?, inside the application root path? in another position in my hard disk or there is a better option to do that?
16:01
<textarcana>
cesar`: do you mean you want to save the output from the tests, as HTML?
16:01
<textarcana>
cucumber -f html
16:02
<textarcana>
^ using the html formatter?
16:20
<cesarstafe>
textarcana: yes
16:20
<cesarstafe>
I want to save the output in html format
16:21
<cesarstafe>
so another person can go an see the scenarios
16:21
<cesarstafe>
in green ..
16:23
<cesar`>
I don't know if put 'cucumber -f html > ../cucumber/test_in.html'
16:24
<cesar`>
or if there is an automatic option to do that
16:24
<textarcana>
cucumber -f html -o ../cucumber/test_in.html
16:24
<textarcana>
cesar`: though your way is fine too
16:25
<cesar`>
thank you textarcana
16:25
<cesar`>
the next step is put the test in spanish
16:25
<textarcana>
sweet!
16:26
<textarcana>
the QA analysts I'm working with speak english & spanish -- I'm hoping they'll help me do some translation too
17:10
<cesar`>
textarcana: I need to translate to spanish my scenarios if it is possible because my boos only speack in Spanish
17:55
<bettsp>
Does Cucumber still support Example tables directly? I tried to use them in my feature and Cucumber reported a syntax error
17:57
<bettsp>
Ah, nvm, apparently I have to have "Scenario Outline", not "Scenario"
19:40
aslakhellesoy joined
19:45
aslakhellesoy joined
20:20
<mantasm>
hey, anyone tried to run cucumber with rails 3? for some reason sessons doesn't work...
21:48
<quizme>
my cucumber test doesn't seem to know about a module in RAILS_ROOT/lib. Is that normal?
21:49
<quizme>
do you have to explicitly load modules from /lib ?