summaryrefslogtreecommitdiff
path: root/test/fixers/test_gnatpp_fixer_callback.vader
blob: 7a3ed5170b8ec3098332205382b3a0c32efe2baf (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
Before:
  call ale#assert#SetUpFixerTest('ada', 'gnatpp')

After:
  " Reset fixers, variables, etc.
  "
  " Vader's 'Restore' command will be called here.
  call ale#assert#TearDownFixerTest()

Execute(The default command should be correct):
  call ale#test#SetFilename('../test-files/ada/testfile.adb')

  AssertFixer
  \ {
  \   'command': ale#Escape(g:ale_ada_gnatpp_executable) .' %t',
  \   'read_temporary_file': 1,
  \ }

Execute(The version check should be correct):
  call ale#test#SetFilename('../test-files/ada/testfile.adb')
  let g:ale_ada_gnatpp_options = '--no-alignment'

  AssertFixer
  \ {
  \   'command': ale#Escape(g:ale_ada_gnatpp_executable)
  \     . ' --no-alignment %t',
  \   'read_temporary_file': 1,
  \ }