cucumber 1.1.4 → 1.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/History.md CHANGED
@@ -1,3 +1,14 @@
1
+ ## [v1.1.5](https://github.com/cucumber/cucumber/compare/v1.1.4...v1.1.5)
2
+
3
+ ### New Features
4
+
5
+ * Added `file_colon_line` to `stepdefs.json` (outputted by `--dotcucumber`). ([#214](https://github.com/cucumber/cucumber/pull/214) MOROHASHI Kyosuke)
6
+ * Upgraded to gherkin 2.3.8 (Aslak Hellesøy)
7
+
8
+ ### Bugfixes
9
+
10
+ * Background fails, but build succeeds ([#205](https://github.com/cucumber/cucumber/issues/205) tcwitte)
11
+
1
12
  ## [v1.1.4](https://github.com/cucumber/cucumber/compare/v1.1.3...v1.1.4)
2
13
 
3
14
  ### New Features
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- [![Build Status](https://secure.travis-ci.org/cucumber/cucumber.png)](http://travis-ci.org/cucumber/cucumber)
1
+ [![Build Status](https://secure.travis-ci.org/cucumber/cucumber.png)](http://travis-ci.org/cucumber/cucumber) [![Dependency Status](https://gemnasium.com/cucumber/cucumber.png)](https://gemnasium.com/cucumber/cucumber)
2
2
 
3
3
  The main website is at http://cukes.info/
4
4
  The documentation is at https://wiki.github.com/cucumber/cucumber/
@@ -23,15 +23,15 @@ for important information about this release. Happy cuking!
23
23
 
24
24
  }
25
25
 
26
- s.add_runtime_dependency 'gherkin', '~> 2.7.1'
26
+ s.add_runtime_dependency 'gherkin', '~> 2.8.0'
27
27
  s.add_runtime_dependency 'term-ansicolor', '>= 1.0.6'
28
28
  s.add_runtime_dependency 'builder', '>= 2.1.2'
29
29
  s.add_runtime_dependency 'diff-lcs', '>= 1.1.2'
30
30
  s.add_runtime_dependency 'json', '>= 1.4.6'
31
31
 
32
- s.add_development_dependency 'aruba', '~> 0.4.9'
32
+ s.add_development_dependency 'aruba', '~> 0.4.11'
33
33
  s.add_development_dependency 'rake', '>= 0.9.2'
34
- s.add_development_dependency 'rspec', '>= 2.7.0'
34
+ s.add_development_dependency 'rspec', '~> 2.7.0' # We'll bump when gherkin is ready to bump
35
35
  s.add_development_dependency 'nokogiri', '>= 1.5.0'
36
36
  s.add_development_dependency 'prawn', '~> 0.8.4'
37
37
  s.add_development_dependency 'prawn-layout', '~> 0.8.4'
@@ -40,9 +40,9 @@ for important information about this release. Happy cuking!
40
40
  s.add_development_dependency 'simplecov', '>= 0.5.4'
41
41
 
42
42
  # For Documentation:
43
- s.add_development_dependency('yard', '~> 0.7.3')
43
+ s.add_development_dependency('yard', '~> 0.7.4')
44
44
  s.add_development_dependency('rdiscount', '~> 1.6.8')
45
- s.add_development_dependency('bcat', '~> 0.6.1')
45
+ s.add_development_dependency('bcat', '~> 0.6.2')
46
46
 
47
47
  # Needed for examples (rake examples)
48
48
  s.add_development_dependency 'ramaze'
@@ -2,6 +2,7 @@
2
2
  {
3
3
  "source": "^I'm using a clean gemset \"([^\"]*)\"$",
4
4
  "flags": "",
5
+ "file_colon_line": "aruba-0.4.11/lib/aruba/cucumber.rb:7",
5
6
  "steps": [
6
7
 
7
8
  ]
@@ -9,6 +10,7 @@
9
10
  {
10
11
  "source": "^a directory named \"([^\"]*)\"$",
11
12
  "flags": "",
13
+ "file_colon_line": "aruba-0.4.11/lib/aruba/cucumber.rb:11",
12
14
  "steps": [
13
15
 
14
16
  ]
@@ -16,6 +18,7 @@
16
18
  {
17
19
  "source": "^a file named \"([^\"]*)\" with:$",
18
20
  "flags": "",
21
+ "file_colon_line": "aruba-0.4.11/lib/aruba/cucumber.rb:15",
19
22
  "steps": [
20
23
  {
21
24
  "name": "a file named \"features/doc_string.feature\" with:",
@@ -103,6 +106,7 @@
103
106
  {
104
107
  "source": "^a (\\d+) byte file named \"([^\"]*)\"$",
105
108
  "flags": "",
109
+ "file_colon_line": "aruba-0.4.11/lib/aruba/cucumber.rb:19",
106
110
  "steps": [
107
111
 
108
112
  ]
@@ -110,6 +114,7 @@
110
114
  {
111
115
  "source": "^an empty file named \"([^\"]*)\"$",
112
116
  "flags": "",
117
+ "file_colon_line": "aruba-0.4.11/lib/aruba/cucumber.rb:23",
113
118
  "steps": [
114
119
 
115
120
  ]
@@ -117,6 +122,7 @@
117
122
  {
118
123
  "source": "^I write to \"([^\"]*)\" with:$",
119
124
  "flags": "",
125
+ "file_colon_line": "aruba-0.4.11/lib/aruba/cucumber.rb:27",
120
126
  "steps": [
121
127
 
122
128
  ]
@@ -124,6 +130,7 @@
124
130
  {
125
131
  "source": "^I overwrite \"([^\"]*)\" with:$",
126
132
  "flags": "",
133
+ "file_colon_line": "aruba-0.4.11/lib/aruba/cucumber.rb:31",
127
134
  "steps": [
128
135
 
129
136
  ]
@@ -131,6 +138,7 @@
131
138
  {
132
139
  "source": "^I append to \"([^\"]*)\" with:$",
133
140
  "flags": "",
141
+ "file_colon_line": "aruba-0.4.11/lib/aruba/cucumber.rb:35",
134
142
  "steps": [
135
143
 
136
144
  ]
@@ -138,6 +146,7 @@
138
146
  {
139
147
  "source": "^I append to \"([^\"]*)\" with \"([^\"]*)\"$",
140
148
  "flags": "",
149
+ "file_colon_line": "aruba-0.4.11/lib/aruba/cucumber.rb:39",
141
150
  "steps": [
142
151
 
143
152
  ]
@@ -145,6 +154,7 @@
145
154
  {
146
155
  "source": "^I remove the file \"([^\"]*)\"$",
147
156
  "flags": "",
157
+ "file_colon_line": "aruba-0.4.11/lib/aruba/cucumber.rb:43",
148
158
  "steps": [
149
159
 
150
160
  ]
@@ -152,6 +162,7 @@
152
162
  {
153
163
  "source": "^I cd to \"([^\"]*)\"$",
154
164
  "flags": "",
165
+ "file_colon_line": "aruba-0.4.11/lib/aruba/cucumber.rb:47",
155
166
  "steps": [
156
167
 
157
168
  ]
@@ -159,6 +170,7 @@
159
170
  {
160
171
  "source": "^I run \"(.*)\"$",
161
172
  "flags": "",
173
+ "file_colon_line": "aruba-0.4.11/lib/aruba/cucumber.rb:51",
162
174
  "steps": [
163
175
 
164
176
  ]
@@ -166,6 +178,7 @@
166
178
  {
167
179
  "source": "^I run `([^`]*)`$",
168
180
  "flags": "",
181
+ "file_colon_line": "aruba-0.4.11/lib/aruba/cucumber.rb:56",
169
182
  "steps": [
170
183
  {
171
184
  "name": "I run `cucumber -f stepdefs --dry-run`",
@@ -334,6 +347,7 @@
334
347
  {
335
348
  "source": "^I successfully run \"(.*)\"$",
336
349
  "flags": "",
350
+ "file_colon_line": "aruba-0.4.11/lib/aruba/cucumber.rb:60",
337
351
  "steps": [
338
352
 
339
353
  ]
@@ -341,6 +355,7 @@
341
355
  {
342
356
  "source": "^I successfully run `([^`]*)`$",
343
357
  "flags": "",
358
+ "file_colon_line": "aruba-0.4.11/lib/aruba/cucumber.rb:65",
344
359
  "steps": [
345
360
 
346
361
  ]
@@ -348,6 +363,7 @@
348
363
  {
349
364
  "source": "^I run \"([^\"]*)\" interactively$",
350
365
  "flags": "",
366
+ "file_colon_line": "aruba-0.4.11/lib/aruba/cucumber.rb:69",
351
367
  "steps": [
352
368
 
353
369
  ]
@@ -355,6 +371,7 @@
355
371
  {
356
372
  "source": "^I run `([^`]*)` interactively$",
357
373
  "flags": "",
374
+ "file_colon_line": "aruba-0.4.11/lib/aruba/cucumber.rb:74",
358
375
  "steps": [
359
376
 
360
377
  ]
@@ -362,6 +379,7 @@
362
379
  {
363
380
  "source": "^I type \"([^\"]*)\"$",
364
381
  "flags": "",
382
+ "file_colon_line": "aruba-0.4.11/lib/aruba/cucumber.rb:78",
365
383
  "steps": [
366
384
 
367
385
  ]
@@ -369,6 +387,7 @@
369
387
  {
370
388
  "source": "^the output should contain \"([^\"]*)\"$",
371
389
  "flags": "",
390
+ "file_colon_line": "aruba-0.4.11/lib/aruba/cucumber.rb:82",
372
391
  "steps": [
373
392
  {
374
393
  "name": "the output should contain \"WARNING\"",
@@ -384,6 +403,7 @@
384
403
  {
385
404
  "source": "^the output from \"([^\"]*)\" should contain \"([^\"]*)\"$",
386
405
  "flags": "",
406
+ "file_colon_line": "aruba-0.4.11/lib/aruba/cucumber.rb:86",
387
407
  "steps": [
388
408
 
389
409
  ]
@@ -391,6 +411,7 @@
391
411
  {
392
412
  "source": "^the output from \"([^\"]*)\" should not contain \"([^\"]*)\"$",
393
413
  "flags": "",
414
+ "file_colon_line": "aruba-0.4.11/lib/aruba/cucumber.rb:90",
394
415
  "steps": [
395
416
 
396
417
  ]
@@ -398,6 +419,7 @@
398
419
  {
399
420
  "source": "^the output should not contain \"([^\"]*)\"$",
400
421
  "flags": "",
422
+ "file_colon_line": "aruba-0.4.11/lib/aruba/cucumber.rb:94",
401
423
  "steps": [
402
424
 
403
425
  ]
@@ -405,6 +427,7 @@
405
427
  {
406
428
  "source": "^the output should contain:$",
407
429
  "flags": "",
430
+ "file_colon_line": "aruba-0.4.11/lib/aruba/cucumber.rb:98",
408
431
  "steps": [
409
432
  {
410
433
  "name": "the output should contain:",
@@ -417,6 +440,7 @@
417
440
  {
418
441
  "source": "^the output should not contain:$",
419
442
  "flags": "",
443
+ "file_colon_line": "aruba-0.4.11/lib/aruba/cucumber.rb:102",
420
444
  "steps": [
421
445
 
422
446
  ]
@@ -424,6 +448,7 @@
424
448
  {
425
449
  "source": "^the output should contain exactly \"([^\"]*)\"$",
426
450
  "flags": "",
451
+ "file_colon_line": "aruba-0.4.11/lib/aruba/cucumber.rb:106",
427
452
  "steps": [
428
453
 
429
454
  ]
@@ -431,6 +456,7 @@
431
456
  {
432
457
  "source": "^the output should contain exactly:$",
433
458
  "flags": "",
459
+ "file_colon_line": "aruba-0.4.11/lib/aruba/cucumber.rb:110",
434
460
  "steps": [
435
461
 
436
462
  ]
@@ -438,6 +464,7 @@
438
464
  {
439
465
  "source": "^the output should match \\/([^\\/]*)\\/$",
440
466
  "flags": "",
467
+ "file_colon_line": "aruba-0.4.11/lib/aruba/cucumber.rb:118",
441
468
  "steps": [
442
469
 
443
470
  ]
@@ -445,6 +472,7 @@
445
472
  {
446
473
  "source": "^the output should match:$",
447
474
  "flags": "",
475
+ "file_colon_line": "aruba-0.4.11/lib/aruba/cucumber.rb:122",
448
476
  "steps": [
449
477
 
450
478
  ]
@@ -452,6 +480,7 @@
452
480
  {
453
481
  "source": "^the exit status should be (\\d+)$",
454
482
  "flags": "",
483
+ "file_colon_line": "aruba-0.4.11/lib/aruba/cucumber.rb:126",
455
484
  "steps": [
456
485
 
457
486
  ]
@@ -459,6 +488,7 @@
459
488
  {
460
489
  "source": "^the exit status should not be (\\d+)$",
461
490
  "flags": "",
491
+ "file_colon_line": "aruba-0.4.11/lib/aruba/cucumber.rb:130",
462
492
  "steps": [
463
493
 
464
494
  ]
@@ -466,6 +496,7 @@
466
496
  {
467
497
  "source": "^it should (pass|fail) with:$",
468
498
  "flags": "",
499
+ "file_colon_line": "aruba-0.4.11/lib/aruba/cucumber.rb:134",
469
500
  "steps": [
470
501
  {
471
502
  "name": "it should fail with:",
@@ -490,6 +521,7 @@
490
521
  {
491
522
  "source": "^it should (pass|fail) with exactly:$",
492
523
  "flags": "",
524
+ "file_colon_line": "aruba-0.4.11/lib/aruba/cucumber.rb:138",
493
525
  "steps": [
494
526
  {
495
527
  "name": "it should fail with exactly:",
@@ -514,6 +546,7 @@
514
546
  {
515
547
  "source": "^it should (pass|fail) with regexp?:$",
516
548
  "flags": "",
549
+ "file_colon_line": "aruba-0.4.11/lib/aruba/cucumber.rb:142",
517
550
  "steps": [
518
551
 
519
552
  ]
@@ -521,6 +554,7 @@
521
554
  {
522
555
  "source": "^the stderr should contain \"([^\"]*)\"$",
523
556
  "flags": "",
557
+ "file_colon_line": "aruba-0.4.11/lib/aruba/cucumber.rb:147",
524
558
  "steps": [
525
559
 
526
560
  ]
@@ -528,6 +562,7 @@
528
562
  {
529
563
  "source": "^the stderr should contain:$",
530
564
  "flags": "",
565
+ "file_colon_line": "aruba-0.4.11/lib/aruba/cucumber.rb:151",
531
566
  "steps": [
532
567
 
533
568
  ]
@@ -535,6 +570,7 @@
535
570
  {
536
571
  "source": "^the stderr should contain exactly:$",
537
572
  "flags": "",
573
+ "file_colon_line": "aruba-0.4.11/lib/aruba/cucumber.rb:155",
538
574
  "steps": [
539
575
 
540
576
  ]
@@ -542,6 +578,7 @@
542
578
  {
543
579
  "source": "^the stdout should contain \"([^\"]*)\"$",
544
580
  "flags": "",
581
+ "file_colon_line": "aruba-0.4.11/lib/aruba/cucumber.rb:159",
545
582
  "steps": [
546
583
 
547
584
  ]
@@ -549,6 +586,7 @@
549
586
  {
550
587
  "source": "^the stdout should contain:$",
551
588
  "flags": "",
589
+ "file_colon_line": "aruba-0.4.11/lib/aruba/cucumber.rb:163",
552
590
  "steps": [
553
591
 
554
592
  ]
@@ -556,6 +594,7 @@
556
594
  {
557
595
  "source": "^the stdout should contain exactly:$",
558
596
  "flags": "",
597
+ "file_colon_line": "aruba-0.4.11/lib/aruba/cucumber.rb:167",
559
598
  "steps": [
560
599
 
561
600
  ]
@@ -563,6 +602,7 @@
563
602
  {
564
603
  "source": "^the stderr should not contain \"([^\"]*)\"$",
565
604
  "flags": "",
605
+ "file_colon_line": "aruba-0.4.11/lib/aruba/cucumber.rb:171",
566
606
  "steps": [
567
607
 
568
608
  ]
@@ -570,6 +610,7 @@
570
610
  {
571
611
  "source": "^the stderr should not contain:$",
572
612
  "flags": "",
613
+ "file_colon_line": "aruba-0.4.11/lib/aruba/cucumber.rb:175",
573
614
  "steps": [
574
615
 
575
616
  ]
@@ -577,6 +618,7 @@
577
618
  {
578
619
  "source": "^the stdout should not contain \"([^\"]*)\"$",
579
620
  "flags": "",
621
+ "file_colon_line": "aruba-0.4.11/lib/aruba/cucumber.rb:179",
580
622
  "steps": [
581
623
 
582
624
  ]
@@ -584,6 +626,7 @@
584
626
  {
585
627
  "source": "^the stdout should not contain:$",
586
628
  "flags": "",
629
+ "file_colon_line": "aruba-0.4.11/lib/aruba/cucumber.rb:183",
587
630
  "steps": [
588
631
 
589
632
  ]
@@ -591,6 +634,7 @@
591
634
  {
592
635
  "source": "^the stdout from \"([^\"]*)\" should contain \"([^\"]*)\"$",
593
636
  "flags": "",
637
+ "file_colon_line": "aruba-0.4.11/lib/aruba/cucumber.rb:187",
594
638
  "steps": [
595
639
 
596
640
  ]
@@ -598,6 +642,7 @@
598
642
  {
599
643
  "source": "^the stdout from \"([^\"]*)\" should not contain \"([^\"]*)\"$",
600
644
  "flags": "",
645
+ "file_colon_line": "aruba-0.4.11/lib/aruba/cucumber.rb:191",
601
646
  "steps": [
602
647
 
603
648
  ]
@@ -605,6 +650,7 @@
605
650
  {
606
651
  "source": "^the stderr from \"([^\"]*)\" should contain \"([^\"]*)\"$",
607
652
  "flags": "",
653
+ "file_colon_line": "aruba-0.4.11/lib/aruba/cucumber.rb:195",
608
654
  "steps": [
609
655
 
610
656
  ]
@@ -612,6 +658,7 @@
612
658
  {
613
659
  "source": "^the stderr from \"([^\"]*)\" should not contain \"([^\"]*)\"$",
614
660
  "flags": "",
661
+ "file_colon_line": "aruba-0.4.11/lib/aruba/cucumber.rb:199",
615
662
  "steps": [
616
663
 
617
664
  ]
@@ -619,6 +666,7 @@
619
666
  {
620
667
  "source": "^the file \"([^\"]*)\" should not exist$",
621
668
  "flags": "",
669
+ "file_colon_line": "aruba-0.4.11/lib/aruba/cucumber.rb:203",
622
670
  "steps": [
623
671
 
624
672
  ]
@@ -626,6 +674,7 @@
626
674
  {
627
675
  "source": "^the following files should exist:$",
628
676
  "flags": "",
677
+ "file_colon_line": "aruba-0.4.11/lib/aruba/cucumber.rb:207",
629
678
  "steps": [
630
679
 
631
680
  ]
@@ -633,6 +682,7 @@
633
682
  {
634
683
  "source": "^the following files should not exist:$",
635
684
  "flags": "",
685
+ "file_colon_line": "aruba-0.4.11/lib/aruba/cucumber.rb:211",
636
686
  "steps": [
637
687
 
638
688
  ]
@@ -640,6 +690,7 @@
640
690
  {
641
691
  "source": "^a file named \"([^\"]*)\" should exist$",
642
692
  "flags": "",
693
+ "file_colon_line": "aruba-0.4.11/lib/aruba/cucumber.rb:215",
643
694
  "steps": [
644
695
 
645
696
  ]
@@ -647,6 +698,7 @@
647
698
  {
648
699
  "source": "^a file named \"([^\"]*)\" should not exist$",
649
700
  "flags": "",
701
+ "file_colon_line": "aruba-0.4.11/lib/aruba/cucumber.rb:219",
650
702
  "steps": [
651
703
 
652
704
  ]
@@ -654,6 +706,7 @@
654
706
  {
655
707
  "source": "^a (\\d+) byte file named \"([^\"]*)\" should exist$",
656
708
  "flags": "",
709
+ "file_colon_line": "aruba-0.4.11/lib/aruba/cucumber.rb:223",
657
710
  "steps": [
658
711
 
659
712
  ]
@@ -661,6 +714,7 @@
661
714
  {
662
715
  "source": "^the following directories should exist:$",
663
716
  "flags": "",
717
+ "file_colon_line": "aruba-0.4.11/lib/aruba/cucumber.rb:227",
664
718
  "steps": [
665
719
 
666
720
  ]
@@ -668,6 +722,7 @@
668
722
  {
669
723
  "source": "^the following directories should not exist:$",
670
724
  "flags": "",
725
+ "file_colon_line": "aruba-0.4.11/lib/aruba/cucumber.rb:231",
671
726
  "steps": [
672
727
 
673
728
  ]
@@ -675,6 +730,7 @@
675
730
  {
676
731
  "source": "^a directory named \"([^\"]*)\" should exist$",
677
732
  "flags": "",
733
+ "file_colon_line": "aruba-0.4.11/lib/aruba/cucumber.rb:235",
678
734
  "steps": [
679
735
 
680
736
  ]
@@ -682,6 +738,7 @@
682
738
  {
683
739
  "source": "^a directory named \"([^\"]*)\" should not exist$",
684
740
  "flags": "",
741
+ "file_colon_line": "aruba-0.4.11/lib/aruba/cucumber.rb:239",
685
742
  "steps": [
686
743
 
687
744
  ]
@@ -689,6 +746,7 @@
689
746
  {
690
747
  "source": "^the file \"([^\"]*)\" should contain \"([^\"]*)\"$",
691
748
  "flags": "",
749
+ "file_colon_line": "aruba-0.4.11/lib/aruba/cucumber.rb:243",
692
750
  "steps": [
693
751
 
694
752
  ]
@@ -696,6 +754,7 @@
696
754
  {
697
755
  "source": "^the file \"([^\"]*)\" should not contain \"([^\"]*)\"$",
698
756
  "flags": "",
757
+ "file_colon_line": "aruba-0.4.11/lib/aruba/cucumber.rb:247",
699
758
  "steps": [
700
759
 
701
760
  ]
@@ -703,6 +762,7 @@
703
762
  {
704
763
  "source": "^the file \"([^\"]*)\" should contain exactly:$",
705
764
  "flags": "",
765
+ "file_colon_line": "aruba-0.4.11/lib/aruba/cucumber.rb:251",
706
766
  "steps": [
707
767
 
708
768
  ]
@@ -710,6 +770,7 @@
710
770
  {
711
771
  "source": "^the file \"([^\"]*)\" should match \\/([^\\/]*)\\/$",
712
772
  "flags": "",
773
+ "file_colon_line": "aruba-0.4.11/lib/aruba/cucumber.rb:255",
713
774
  "steps": [
714
775
 
715
776
  ]
@@ -717,6 +778,7 @@
717
778
  {
718
779
  "source": "^the file \"([^\"]*)\" should not match \\/([^\\/]*)\\/$",
719
780
  "flags": "",
781
+ "file_colon_line": "aruba-0.4.11/lib/aruba/cucumber.rb:259",
720
782
  "steps": [
721
783
 
722
784
  ]
@@ -724,6 +786,7 @@
724
786
  {
725
787
  "source": "^a scenario \"([^\"]*)\" with:$",
726
788
  "flags": "",
789
+ "file_colon_line": "features/cucumber-features/step_definitions/cucumber_stepdefs.rb:5",
727
790
  "steps": [
728
791
  {
729
792
  "name": "a scenario \"Add three numbers\" with:",
@@ -784,6 +847,7 @@
784
847
  {
785
848
  "source": "^the following feature:$",
786
849
  "flags": "",
850
+ "file_colon_line": "features/cucumber-features/step_definitions/cucumber_stepdefs.rb:10",
787
851
  "steps": [
788
852
  {
789
853
  "name": "the following feature:",
@@ -796,6 +860,7 @@
796
860
  {
797
861
  "source": "^the step \"([^\"]*)\" has a passing mapping$",
798
862
  "flags": "",
863
+ "file_colon_line": "features/cucumber-features/step_definitions/cucumber_stepdefs.rb:14",
799
864
  "steps": [
800
865
  {
801
866
  "name": "the step \"I add 4 and 5\" has a passing mapping",
@@ -820,6 +885,7 @@
820
885
  {
821
886
  "source": "^the step \"([^\"]*)\" has a pending mapping$",
822
887
  "flags": "",
888
+ "file_colon_line": "features/cucumber-features/step_definitions/cucumber_stepdefs.rb:18",
823
889
  "steps": [
824
890
  {
825
891
  "name": "the step \"I add 4 and 5\" has a pending mapping",
@@ -835,6 +901,7 @@
835
901
  {
836
902
  "source": "^the step \"([^\"]*)\" has a failing mapping$",
837
903
  "flags": "",
904
+ "file_colon_line": "features/cucumber-features/step_definitions/cucumber_stepdefs.rb:22",
838
905
  "steps": [
839
906
  {
840
907
  "name": "the step \"I add 4 and 5\" has a failing mapping",
@@ -850,6 +917,7 @@
850
917
  {
851
918
  "source": "^Cucumber executes the scenario \"([^\"]*)\"$",
852
919
  "flags": "",
920
+ "file_colon_line": "features/cucumber-features/step_definitions/cucumber_stepdefs.rb:26",
853
921
  "steps": [
854
922
  {
855
923
  "name": "Cucumber executes the scenario \"Basic Arithmetic\"",
@@ -865,6 +933,7 @@
865
933
  {
866
934
  "source": "^Cucumber runs the feature$",
867
935
  "flags": "",
936
+ "file_colon_line": "features/cucumber-features/step_definitions/cucumber_stepdefs.rb:30",
868
937
  "steps": [
869
938
  {
870
939
  "name": "Cucumber runs the feature",
@@ -877,6 +946,7 @@
877
946
  {
878
947
  "source": "^Cucumber runs the scenario with steps for a calculator$",
879
948
  "flags": "",
949
+ "file_colon_line": "features/cucumber-features/step_definitions/cucumber_stepdefs.rb:34",
880
950
  "steps": [
881
951
  {
882
952
  "name": "Cucumber runs the scenario with steps for a calculator",
@@ -889,6 +959,7 @@
889
959
  {
890
960
  "source": "^the scenario passes$",
891
961
  "flags": "",
962
+ "file_colon_line": "features/cucumber-features/step_definitions/cucumber_stepdefs.rb:40",
892
963
  "steps": [
893
964
  {
894
965
  "name": "the scenario passes",
@@ -901,6 +972,7 @@
901
972
  {
902
973
  "source": "^the scenario fails$",
903
974
  "flags": "",
975
+ "file_colon_line": "features/cucumber-features/step_definitions/cucumber_stepdefs.rb:44",
904
976
  "steps": [
905
977
  {
906
978
  "name": "the scenario fails",
@@ -913,6 +985,7 @@
913
985
  {
914
986
  "source": "^the scenario is pending$",
915
987
  "flags": "",
988
+ "file_colon_line": "features/cucumber-features/step_definitions/cucumber_stepdefs.rb:48",
916
989
  "steps": [
917
990
  {
918
991
  "name": "the scenario is pending",
@@ -925,6 +998,7 @@
925
998
  {
926
999
  "source": "^the scenario is undefined$",
927
1000
  "flags": "",
1001
+ "file_colon_line": "features/cucumber-features/step_definitions/cucumber_stepdefs.rb:52",
928
1002
  "steps": [
929
1003
  {
930
1004
  "name": "the scenario is undefined",
@@ -937,6 +1011,7 @@
937
1011
  {
938
1012
  "source": "^the step \"([^\"]*)\" is skipped$",
939
1013
  "flags": "",
1014
+ "file_colon_line": "features/cucumber-features/step_definitions/cucumber_stepdefs.rb:56",
940
1015
  "steps": [
941
1016
  {
942
1017
  "name": "the step \"the result is 9\" is skipped",
@@ -952,6 +1027,7 @@
952
1027
  {
953
1028
  "source": "^the feature passes$",
954
1029
  "flags": "",
1030
+ "file_colon_line": "features/cucumber-features/step_definitions/cucumber_stepdefs.rb:60",
955
1031
  "steps": [
956
1032
  {
957
1033
  "name": "the feature passes",
@@ -964,6 +1040,7 @@
964
1040
  {
965
1041
  "source": "^I run cucumber \"(.+)\"$",
966
1042
  "flags": "",
1043
+ "file_colon_line": "features/step_definitions/cucumber_steps.rb:1",
967
1044
  "steps": [
968
1045
  {
969
1046
  "name": "I run cucumber \"--format json features/doc_string.feature\"",
@@ -1042,6 +1119,7 @@
1042
1119
  {
1043
1120
  "source": "^it should (pass|fail) with JSON:$",
1044
1121
  "flags": "",
1122
+ "file_colon_line": "features/step_definitions/cucumber_steps.rb:5",
1045
1123
  "steps": [
1046
1124
  {
1047
1125
  "name": "it should fail with JSON:",
@@ -1066,6 +1144,7 @@
1066
1144
  {
1067
1145
  "source": "^a directory without standard Cucumber project directory structure$",
1068
1146
  "flags": "",
1147
+ "file_colon_line": "features/step_definitions/cucumber_steps.rb:19",
1069
1148
  "steps": [
1070
1149
  {
1071
1150
  "name": "a directory without standard Cucumber project directory structure",
@@ -1078,6 +1157,7 @@
1078
1157
  {
1079
1158
  "source": "^a scenario with a step that looks like this:$",
1080
1159
  "flags": "",
1160
+ "file_colon_line": "features/step_definitions/cucumber_steps.rb:25",
1081
1161
  "steps": [
1082
1162
  {
1083
1163
  "name": "a scenario with a step that looks like this:",
@@ -1090,6 +1170,7 @@
1090
1170
  {
1091
1171
  "source": "^a step definition that looks like this:$",
1092
1172
  "flags": "",
1173
+ "file_colon_line": "features/step_definitions/cucumber_steps.rb:31",
1093
1174
  "steps": [
1094
1175
  {
1095
1176
  "name": "a step definition that looks like this:",
@@ -1102,6 +1183,7 @@
1102
1183
  {
1103
1184
  "source": "^I run the feature with the (\\w+) formatter$",
1104
1185
  "flags": "",
1186
+ "file_colon_line": "features/step_definitions/cucumber_steps.rb:35",
1105
1187
  "steps": [
1106
1188
  {
1107
1189
  "name": "I run the feature with the progress formatter",
@@ -1117,6 +1199,7 @@
1117
1199
  {
1118
1200
  "source": "^I am running spork in the background$",
1119
1201
  "flags": "",
1202
+ "file_colon_line": "features/step_definitions/drb_steps.rb:1",
1120
1203
  "steps": [
1121
1204
  {
1122
1205
  "name": "I am running spork in the background",
@@ -1129,6 +1212,7 @@
1129
1212
  {
1130
1213
  "source": "^jeg drikker en \"([^\"]*)\"$",
1131
1214
  "flags": "",
1215
+ "file_colon_line": "features/step_definitions/iso-8859-1_steps.rb:6",
1132
1216
  "steps": [
1133
1217
  {
1134
1218
  "name": "jeg drikker en \"øl\"",
@@ -1144,6 +1228,7 @@
1144
1228
  {
1145
1229
  "source": "^skal de andre si \"([^\"]*)\"$",
1146
1230
  "flags": "",
1231
+ "file_colon_line": "features/step_definitions/iso-8859-1_steps.rb:10",
1147
1232
  "steps": [
1148
1233
  {
1149
1234
  "name": "skal de andre si \"skål\"",