aboutsummaryrefslogtreecommitdiff
path: root/dotfiles/.vim/t/extensions_default.vim
blob: 00d4b04d3d4528eb5ea588bf172915a40d5f0930 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
let g:airline#extensions#default#layout = [
      \ [ 'c', 'a', 'b', 'warning' ],
      \ [ 'x', 'z', 'y' ]
      \ ]

source plugin/airline.vim
doautocmd VimEnter

describe 'default'
  before
    let s:builder = airline#builder#new({'active': 1})
  end

  it 'should use the layout'
    call airline#extensions#default#apply(s:builder, { 'winnr': 1, 'active': 1 })
    let stl = s:builder.build()
    Expect stl =~ 'airline_c_to_airline_a'
    Expect stl =~ 'airline_a_to_airline_b'
    Expect stl =~ 'airline_b_to_airline_warning'
    Expect stl =~ 'airline_x_to_airline_z'
    Expect stl =~ 'airline_z_to_airline_y'
  end

  it 'should only render warning section in active splits'
    wincmd s
    Expect airline#statusline(1) =~ 'warning'
    Expect airline#statusline(2) !~ 'warning'
    wincmd c
  end
end