mirror of
https://github.com/pry/pry.git
synced 2022-11-09 12:35:05 -05:00
83 lines
3.1 KiB
Ruby
83 lines
3.1 KiB
Ruby
require 'helper'
|
|
|
|
describe Pry::Command::Cat::FileFormatter do
|
|
describe "#file_and_line" do
|
|
before do
|
|
@p = Pry.new
|
|
@opt = Slop.new
|
|
Pry::Code.stubs(:from_file)
|
|
end
|
|
|
|
after do
|
|
Pry::Code.unstub(:from_file)
|
|
end
|
|
|
|
describe "windows filesystem" do
|
|
it "should parse '/'style absolute path without line_num" do
|
|
file_with_embedded_line = "C:/Ruby193/pry_instance.rb"
|
|
ff = Pry::Command::Cat::FileFormatter.new(file_with_embedded_line, @p, @opt)
|
|
file_name, line_num = ff.file_and_line
|
|
file_name.should == "C:/Ruby193/pry_instance.rb"
|
|
line_num.should == nil
|
|
end
|
|
|
|
it "should parse '/'style absolute path with line_num" do
|
|
file_with_embedded_line = "C:/Ruby193/pry_instance.rb:2"
|
|
ff = Pry::Command::Cat::FileFormatter.new(file_with_embedded_line, @p, @opt)
|
|
file_name, line_num = ff.file_and_line
|
|
file_name.should == "C:/Ruby193/pry_instance.rb"
|
|
line_num.should == 2
|
|
end
|
|
|
|
it "should parse '\\'style absolute path without line_num" do
|
|
file_with_embedded_line = "C:\\Ruby193\\pry_instance.rb"
|
|
ff = Pry::Command::Cat::FileFormatter.new(file_with_embedded_line, @p, @opt)
|
|
file_name, line_num = ff.file_and_line
|
|
file_name.should == "C:\\Ruby193\\pry_instance.rb"
|
|
line_num.should == nil
|
|
end
|
|
|
|
it "should parse '\\'style absolute path with line_num" do
|
|
file_with_embedded_line = "C:\\Ruby193\\pry_instance.rb:2"
|
|
ff = Pry::Command::Cat::FileFormatter.new(file_with_embedded_line, @p, @opt)
|
|
file_name, line_num = ff.file_and_line
|
|
file_name.should == "C:\\Ruby193\\pry_instance.rb"
|
|
line_num.should == 2
|
|
end
|
|
end
|
|
|
|
describe "UNIX-like filesystem" do
|
|
it "should parse absolute path without line_num" do
|
|
file_with_embedded_line = "/Ruby193/pry_instance.rb"
|
|
ff = Pry::Command::Cat::FileFormatter.new(file_with_embedded_line, @p, @opt)
|
|
file_name, line_num = ff.file_and_line
|
|
file_name.should == "/Ruby193/pry_instance.rb"
|
|
line_num.should == nil
|
|
end
|
|
|
|
it "should parse absolute path with line_num" do
|
|
file_with_embedded_line = "/Ruby193/pry_instance.rb:2"
|
|
ff = Pry::Command::Cat::FileFormatter.new(file_with_embedded_line, @p, @opt)
|
|
file_name, line_num = ff.file_and_line
|
|
file_name.should == "/Ruby193/pry_instance.rb"
|
|
line_num.should == 2
|
|
end
|
|
end
|
|
|
|
it "should parse relative path without line_num" do
|
|
file_with_embedded_line = "pry_instance.rb"
|
|
ff = Pry::Command::Cat::FileFormatter.new(file_with_embedded_line, @p, @opt)
|
|
file_name, line_num = ff.file_and_line
|
|
file_name.should == "pry_instance.rb"
|
|
line_num.should == nil
|
|
end
|
|
|
|
it "should parse relative path with line_num" do
|
|
file_with_embedded_line = "pry_instance.rb:2"
|
|
ff = Pry::Command::Cat::FileFormatter.new(file_with_embedded_line, @p, @opt)
|
|
file_name, line_num = ff.file_and_line
|
|
file_name.should == "pry_instance.rb"
|
|
line_num.should == 2
|
|
end
|
|
end
|
|
end
|