summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorJosh Cheek <josh.cheek@gmail.com>2019-07-11 08:54:10 -0500
committerKyrylo Silin <silin@kyrylo.org>2019-07-11 16:54:10 +0300
commit846b7ecb6f804d4192cc44a673c2a85b73f1f0b7 (patch)
tree18a393e9e709f4077001455b2e95c22c6ae945a3 /spec
parent028af11c0e530398060e0a3e2194140590ec3c7c (diff)
downloadpry-846b7ecb6f804d4192cc44a673c2a85b73f1f0b7.tar.gz
Attempt to allow pasting multiple lines with leading dots (#2060)
Two tests are breaking, and I kind of understand why, but I'm not sure what to do about it. Figured I should commit and send a PR in hopes of another brain being able to help me out :)
Diffstat (limited to 'spec')
-rw-r--r--spec/command_integration_spec.rb4
-rw-r--r--spec/command_spec.rb4
2 files changed, 4 insertions, 4 deletions
diff --git a/spec/command_integration_spec.rb b/spec/command_integration_spec.rb
index 7579da62..cca00136 100644
--- a/spec/command_integration_spec.rb
+++ b/spec/command_integration_spec.rb
@@ -456,7 +456,7 @@ describe "commands" do
end
end
- expect(pry_tester(commands: klass).eval("def yo\nhello\n")).to eq 7
+ expect(pry_tester(commands: klass).eval("def yo", "hello")).to eq 7
end
it(
@@ -469,7 +469,7 @@ describe "commands" do
end
end
- expect(pry_tester(commands: klass).eval("def yo\nhello\n")).to eq 5
+ expect(pry_tester(commands: klass).eval("def yo", "hello\n")).to eq 5
end
it 'should set the commands default, and the default should be overridable' do
diff --git a/spec/command_spec.rb b/spec/command_spec.rb
index b676be81..d56bc09a 100644
--- a/spec/command_spec.rb
+++ b/spec/command_spec.rb
@@ -342,7 +342,7 @@ RSpec.describe Pry::Command do
before { subject.command_options(use_prefix: true) }
it "returns a Regexp without a prefix" do
- expect(subject.command_regex).to eq(/^test\-command(?!\S)/)
+ expect(subject.command_regex).to eq(/\Atest\-command(?!\S)/)
end
end
@@ -350,7 +350,7 @@ RSpec.describe Pry::Command do
before { subject.command_options(use_prefix: false) }
it "returns a Regexp with a prefix" do
- expect(subject.command_regex).to eq(/^(?:)?test\-command(?!\S)/)
+ expect(subject.command_regex).to eq(/\A(?:)?test\-command(?!\S)/)
end
end
end