|
| 1 | +Feature: Introduce variable :RIntroduceVariable |
| 2 | + Take a method of instancated class and introduce variable |
| 3 | + |
| 4 | + Shortcuts: |
| 5 | + :RIntroduceVariable |
| 6 | + <leader>riv |
| 7 | + |
| 8 | + Scenario: Introduce variable from class |
| 9 | + Given I have the following code: |
| 10 | + """ |
| 11 | + HelloWorld.new |
| 12 | + """ |
| 13 | + When I select the class and execute: |
| 14 | + """ |
| 15 | + :RIntroduceVariable |
| 16 | + """ |
| 17 | + Then I should see: |
| 18 | + """ |
| 19 | + hello_world = HelloWorld.new |
| 20 | + """ |
| 21 | + |
| 22 | + Scenario: Introduce variable from method name |
| 23 | + Given I have the following code: |
| 24 | + """ |
| 25 | + hello_world.person |
| 26 | + """ |
| 27 | + When I select the class and execute: |
| 28 | + """ |
| 29 | + :RIntroduceVariable |
| 30 | + """ |
| 31 | + Then I should see: |
| 32 | + """ |
| 33 | + person = hello_world.person |
| 34 | + """ |
| 35 | + |
| 36 | + Scenario: Introduce variable when method has parameters |
| 37 | + Given I have the following code: |
| 38 | + """ |
| 39 | + hello_world.person("Foo", "Bar") |
| 40 | + """ |
| 41 | + When I select the class and execute: |
| 42 | + """ |
| 43 | + :RIntroduceVariable |
| 44 | + """ |
| 45 | + Then I should see: |
| 46 | + """ |
| 47 | + person = hello_world.person("Foo", "Bar") |
| 48 | + """ |
| 49 | + |
| 50 | + Scenario: Introduce variable when method has parameters that include method call |
| 51 | + Given I have the following code: |
| 52 | + """ |
| 53 | + hello_world.person("Foo", Bar.new) |
| 54 | + """ |
| 55 | + When I select the class and execute: |
| 56 | + """ |
| 57 | + :RIntroduceVariable |
| 58 | + """ |
| 59 | + Then I should see: |
| 60 | + """ |
| 61 | + person = hello_world.person("Foo", Bar.new) |
| 62 | + """ |
| 63 | + |
| 64 | + Scenario: Introduce variable when method has parameters that starts with a hash |
| 65 | + Given I have the following code: |
| 66 | + """ |
| 67 | + hello_world.person {:foo => "bar} |
| 68 | + """ |
| 69 | + When I select the class and execute: |
| 70 | + """ |
| 71 | + :RIntroduceVariable |
| 72 | + """ |
| 73 | + Then I should see: |
| 74 | + """ |
| 75 | + person = hello_world.person {:foo => "bar} |
| 76 | + """ |
| 77 | + |
| 78 | + Scenario: Introduce variable when method has parameters on the second method name |
| 79 | + Given I have the following code: |
| 80 | + """ |
| 81 | + hello_world.person.name("Foo", Bar.new) |
| 82 | + """ |
| 83 | + When I select the class and execute: |
| 84 | + """ |
| 85 | + :RIntroduceVariable |
| 86 | + """ |
| 87 | + Then I should see: |
| 88 | + """ |
| 89 | + name = hello_world.person.name("Foo", Bar.new) |
| 90 | + """ |
0 commit comments