correctly inject the accent highlight groups.

This commit is contained in:
Bailey Ling
2013-09-15 22:47:13 -04:00
parent 858ef19a6f
commit 02aa620a92
4 changed files with 13 additions and 6 deletions

View File

@@ -37,6 +37,12 @@ describe 'active builder'
let stl = s:builder.build()
Expect stl == '%#Normal#hello>hello'
end
it 'should replace accent groups with the specified group'
call s:builder.add_section('Normal', '%#airline_accent_foo#hello')
let stl = s:builder.build()
Expect stl == '%#Normal#%#Normal_foo#hello'
end
end
describe 'inactive builder'