File: test_window.sh

package info (click to toggle)
mle 1.7.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,108 kB
  • sloc: ansic: 13,335; sh: 728; php: 228; makefile: 83
file content (23 lines) | stat: -rwxr-xr-x 529 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env bash

macro='C-n'
declare -A expected
expected[new_bview_count]='^bview_count=2$'
source 'test.sh'

macro='C-n M-c'
declare -A expected
expected[close_bview_count]='^bview_count=1$'
source 'test.sh'

macro='a p p l e C-n b a n a n a'
declare -A expected
expected[new2_data1]='^apple$'
expected[new2_data2]='^banana$'
source 'test.sh'

macro='a p p l e C-n b a n a n a M-p r e d M-n y e l l o w'
declare -A expected
expected[next_prev_data1]='^applered$'
expected[next_prev_data2]='^bananayellow$'
source 'test.sh'