shard-ameba/spec/ameba/rule/layout/trailing_whitespace_spec.cr
Sijawusz Pur Rahnama cfea0fda34 Fix typo
2022-12-21 21:14:29 +01:00

20 lines
531 B
Crystal

require "../../../spec_helper"
module Ameba::Rule::Layout
subject = TrailingWhitespace.new
describe TrailingWhitespace do
it "passes if all lines do not have trailing whitespace" do
expect_no_issues subject, "no-whitespace"
end
it "fails if there is a line with trailing whitespace" do
source = expect_issue subject,
"whitespace at the end \n" \
" # ^^ error: Trailing whitespace detected"
expect_correction source, "whitespace at the end"
end
end
end