2018-06-16 11:50:59 +00:00
|
|
|
require "../../../spec_helper"
|
2017-11-05 20:08:01 +00:00
|
|
|
|
|
|
|
module Ameba
|
2018-06-16 11:50:59 +00:00
|
|
|
subject = Rule::Style::ConstantNames.new
|
2017-11-05 20:08:01 +00:00
|
|
|
|
2022-12-21 16:23:56 +00:00
|
|
|
private def it_reports_constant(name, value, expected, *, file = __FILE__, line = __LINE__)
|
|
|
|
it "reports constant name #{expected}", file, line do
|
2021-10-27 22:58:58 +00:00
|
|
|
rule = Rule::Style::ConstantNames.new
|
2022-12-21 16:23:56 +00:00
|
|
|
expect_issue rule, <<-CRYSTAL, name: name, file: file, line: line
|
2021-10-27 22:58:58 +00:00
|
|
|
%{name} = #{value}
|
|
|
|
# ^{name} error: Constant name should be screaming-cased: #{expected}, not #{name}
|
|
|
|
CRYSTAL
|
2017-11-05 20:08:01 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-06-16 11:50:59 +00:00
|
|
|
describe Rule::Style::ConstantNames do
|
2017-11-05 20:08:01 +00:00
|
|
|
it "passes if type names are screaming-cased" do
|
2021-10-27 22:58:58 +00:00
|
|
|
expect_no_issues subject, <<-CRYSTAL
|
2017-11-05 20:08:01 +00:00
|
|
|
LUCKY_NUMBERS = [3, 7, 11]
|
2022-12-19 23:34:11 +00:00
|
|
|
DOCUMENTATION_URL = "https://crystal-lang.org/docs"
|
2017-11-05 20:08:01 +00:00
|
|
|
|
|
|
|
Int32
|
|
|
|
|
|
|
|
s : String = "str"
|
|
|
|
|
|
|
|
def works(n : Int32)
|
|
|
|
end
|
|
|
|
|
2020-04-13 06:38:05 +00:00
|
|
|
Log = ::Log.for("db")
|
|
|
|
|
2017-11-05 20:08:01 +00:00
|
|
|
a = 1
|
|
|
|
myVar = 2
|
|
|
|
m_var = 3
|
2021-10-27 22:58:58 +00:00
|
|
|
CRYSTAL
|
2017-11-05 20:08:01 +00:00
|
|
|
end
|
|
|
|
|
2021-10-27 22:58:58 +00:00
|
|
|
# it_reports_constant "MyBadConstant", "1", "MYBADCONSTANT"
|
|
|
|
it_reports_constant "Wrong_NAME", "2", "WRONG_NAME"
|
|
|
|
it_reports_constant "Wrong_Name", "3", "WRONG_NAME"
|
2017-11-05 20:08:01 +00:00
|
|
|
end
|
|
|
|
end
|