Skip to content

Commit

Permalink
Fix rx_test.
Browse files Browse the repository at this point in the history
  • Loading branch information
nex3 committed Jul 11, 2014
1 parent f838b7c commit 2e5c22a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/sass/scss/rx_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ def test_identifiers
assert_match IDENT, "_foo" # Can put a _ before anything
assert_match IDENT, "_\xC3\xBFoo"
assert_match IDENT, "_\\f oo"
assert_match IDENT, "--foo" # "Custom" identifier

assert_match IDENT, "foo-bar"
assert_match IDENT, "f012-23"
Expand Down Expand Up @@ -59,7 +60,6 @@ def test_invalid_identifiers
assert_no_match IDENT, ""
assert_no_match IDENT, "1foo"
assert_no_match IDENT, "-1foo"
assert_no_match IDENT, "--foo"
assert_no_match IDENT, "foo bar"
assert_no_match IDENT, "foo~bar"

Expand Down

0 comments on commit 2e5c22a

Please sign in to comment.