blob: 9aa85cb96ee11099e664e5999f6d657ad193f068 [file] [log] [blame]
// Copyright 2021 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package rules
import (
"testing"
)
func TestNoExtraSpaceOnRight(t *testing.T) {
ruleTestCase{
files: map[string]string{
"example.md": `example
markdown here« »
and then this.`,
},
}.runOverTokens(t, newNoExtraSpaceOnRight)
}