We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d934f7c + 6ff9f8d commit 5183658Copy full SHA for 5183658
spec/cc/engine/analyzers/ruby/main_spec.rb
@@ -8,6 +8,19 @@ module CC::Engine::Analyzers
8
include AnalyzerSpecHelpers
9
10
describe "#run" do
11
+ it "handles escaped multibyte characters in regular expressions" do
12
+ create_source_file("foo.rb", <<-EORUBY)
13
+ class Helper
14
+ def self.sub_degrees(str)
15
+ str.gsub(/\\d+\\°\\s/, "")
16
+ end
17
18
+ EORUBY
19
+
20
+ pending "Potential lexing bug. Ask customer to remove escaping."
21
+ run_engine(engine_conf).strip.split("\0")
22
23
24
it "prints an issue" do
25
create_source_file("foo.rb", <<-EORUBY)
26
describe '#ruby?' do
0 commit comments