1
0
Fork 0
mirror of https://github.com/pry/pry.git synced 2022-11-09 12:35:05 -05:00
pry--pry/test/test_default_commands
Kyrylo Silin 367e076670 Change behavior of cd - command
Since banister begged me to do that... completely rewrite `cd -`
command (implemetation is much simpler now).

This commit brings such changes:

  * completely rewrite behavior of `cd -` command;

  * implement ScratchPad aka Pad for unit testing purposes (by
    banister);

  * use Pad riches in the unit tests for `cd -` command;

  * remove verbose and clunky unit tests;

This commit brings new meaning to the `cd -` command. The main
difference is that the new command saves entire binding stack, not just
the last binding. Let me show you an example of the variance between
these two implemetations:

  * Old `cd -` implementation saves *only* last binding. With our next
    `cd -` invocation our interjacent results are lost:
      [1] pry(main)> cd 1/2/3/../4
      [2] pry(4):3> cd -
      [3] pry(main)> cd -
      [4] pry(4):1> nesting
      Nesting status:
      --
      0. main (Pry top level)
      1. 4

      Also, there are a few bugs in old `cd -` command:

        * you type `cd :foo`, `cd 1/2/3` and `cd -`. The last command
          relocates you to the scope of `3` (leaves you where you was),
          when `:foo` is expected;

        * you type `cd :foo`, `cd 1/2/3/../4`, `cd -`. The last command
          relocates you to the scope of `3`, when `:foo` is expected.

  * New and shiny `cd -` is devoid of those shortcomings:
      [1] pry(main)> cd 1/2/3/../4
      [2] pry(4):3> cd -
      [3] pry(main)> cd -
      [4] pry(4):3> nesting
      Nesting status:
      --
      0. main (Pry top level)
      1. 1
      2. 2
      3. 4

As I said before, this solution is *much* simpler and less error-prone.

Signed-off-by: Kyrylo Silin <kyrylosilin@gmail.com>
2012-06-27 14:54:07 +03:00
..
example.erb Fix whereami inside erb files. 2012-06-03 20:40:20 -07:00
test_cd.rb Change behavior of cd - command 2012-06-27 14:54:07 +03:00
test_context.rb Fix whereami with tests, closes #595 2012-06-16 01:25:07 +12:00
test_documentation.rb Tidy up tests and remove some repeating code 2012-06-11 19:33:04 +02:00
test_find_method.rb Tidy up tests and remove some repeating code 2012-06-11 19:33:04 +02:00
test_gems.rb better fix... 2012-01-28 19:50:56 -08:00
test_help.rb Fix test I broke by making "help help" include the word foo 2012-03-01 17:10:55 -08:00
test_input.rb Tidy up tests and remove some repeating code 2012-06-11 19:33:04 +02:00
test_introspection.rb Tidy up tests and remove some repeating code 2012-06-11 19:33:04 +02:00
test_ls.rb Tidy up tests and remove some repeating code 2012-06-11 19:33:04 +02:00
test_shell.rb Tidy up tests and remove some repeating code 2012-06-11 19:33:04 +02:00
test_show_source.rb Tidy up tests and remove some repeating code 2012-06-11 19:33:04 +02:00