mirror of
https://gitea.invidious.io/iv-org/shard-ameba.git
synced 2024-08-15 00:53:29 +00:00
42 lines
1 KiB
Crystal
42 lines
1 KiB
Crystal
require "../../../spec_helper"
|
|
|
|
module Ameba
|
|
subject = Rule::Style::MethodNames.new
|
|
|
|
private def it_reports_method_name(name, expected, *, file = __FILE__, line = __LINE__)
|
|
it "reports method name #{expected}", file, line do
|
|
rule = Rule::Style::MethodNames.new
|
|
expect_issue rule, <<-CRYSTAL, name: name, file: file, line: line
|
|
def %{name}; end
|
|
# ^{name} error: Method name should be underscore-cased: #{expected}, not %{name}
|
|
CRYSTAL
|
|
end
|
|
end
|
|
|
|
describe Rule::Style::MethodNames do
|
|
it "passes if method names are underscore-cased" do
|
|
expect_no_issues subject, <<-CRYSTAL
|
|
class Person
|
|
def first_name
|
|
end
|
|
|
|
def date_of_birth
|
|
end
|
|
|
|
def homepage_url
|
|
end
|
|
|
|
def valid?
|
|
end
|
|
|
|
def name
|
|
end
|
|
end
|
|
CRYSTAL
|
|
end
|
|
|
|
it_reports_method_name "firstName", "first_name"
|
|
it_reports_method_name "date_of_Birth", "date_of_birth"
|
|
it_reports_method_name "homepageURL", "homepage_url"
|
|
end
|
|
end
|