2018-06-16 11:50:59 +00:00
|
|
|
require "../../../spec_helper"
|
2018-01-25 08:38:12 +00:00
|
|
|
|
2018-06-16 11:50:59 +00:00
|
|
|
module Ameba::Rule::Lint
|
2018-01-25 08:38:12 +00:00
|
|
|
describe Syntax do
|
|
|
|
subject = Syntax.new
|
|
|
|
|
|
|
|
it "passes if there is no invalid syntax" do
|
2022-04-04 19:10:27 +00:00
|
|
|
expect_no_issues subject, <<-CRYSTAL
|
2018-01-25 08:38:12 +00:00
|
|
|
def hello
|
|
|
|
puts "totally valid"
|
2022-11-23 02:26:55 +00:00
|
|
|
rescue e : Exception
|
2018-01-25 08:38:12 +00:00
|
|
|
end
|
2022-04-04 19:10:27 +00:00
|
|
|
CRYSTAL
|
2018-01-25 08:38:12 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it "fails if there is an invalid syntax" do
|
2022-04-04 19:10:27 +00:00
|
|
|
expect_issue subject, <<-CRYSTAL
|
2018-01-25 08:38:12 +00:00
|
|
|
def hello
|
|
|
|
puts "invalid"
|
|
|
|
rescue Exception => e
|
2022-04-04 19:10:27 +00:00
|
|
|
# ^ error: expecting any of these tokens: ;, NEWLINE (not '=>')
|
2018-01-25 08:38:12 +00:00
|
|
|
end
|
2022-04-04 19:10:27 +00:00
|
|
|
CRYSTAL
|
2018-01-25 08:38:12 +00:00
|
|
|
end
|
|
|
|
|
2019-04-13 19:38:37 +00:00
|
|
|
it "has highest severity" do
|
|
|
|
subject.severity.should eq Severity::Error
|
|
|
|
end
|
2018-01-25 08:38:12 +00:00
|
|
|
end
|
|
|
|
end
|